Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / flexbox / flex-flow-initial.html
blob35c5978779f6b9af593bb4dbaef737746a3ca212
1 <!DOCTYPE html>
2 <style>
3 #test1 {
4 flex-flow: column;
6 #test1 {
7 flex-flow: initial;
9 #test2 {
10 flex-direction: column;
12 #test2 {
13 flex-direction: initial;
15 </style>
16 <span id="test1"></span>
17 <span id="test2"></span>
18 <script src="../../resources/js-test.js"></script>
19 <script>
20 description("Tests that 'initial' is handled correctly for the flex-flow shorthand.");
21 value1 = window.getComputedStyle(test1).flexDirection;
22 value2 = window.getComputedStyle(test2).flexDirection;
23 shouldBeEqualToString('window.getComputedStyle(test1).flexDirection', 'row');
24 shouldBeEqualToString('window.getComputedStyle(test2).flexDirection', 'row');
25 if (window.testRunner)
26 testRunner.dumpAsText();
27 </script>