10 flex-direction: column;
13 flex-direction: initial;
16 <span id=
"test1"></span>
17 <span id=
"test2"></span>
18 <script src=
"../../resources/js-test.js"></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();