5 <div id=
"flexContainer" style=
"display: flex">
6 <div id=
"flexItem"></div>
8 <script src=
"../../resources/js-test.js"></script>
9 <script src=
"resources/alignment-parsing-utils.js"></script>
11 description('Test to verify initial values of alignment properties are backward-comaptible with flexbox implementation.');
13 checkSupportedValues("container", "align-items");
14 checkSupportedValues("container", "align-self");
15 checkSupportedValues("container", "align-content");
16 checkSupportedValues("container", "justify-content");
18 checkSupportedValues("item", "align-items");
19 checkSupportedValues("item", "align-self");
20 checkSupportedValues("item", "align-content");
21 checkSupportedValues("item", "justify-content");
23 checkSupportedValues("flexContainer", "align-items");
24 checkSupportedValues("flexContainer", "align-self");
25 checkSupportedValues("flexContainer", "align-content");
26 checkSupportedValues("flexContainer", "justify-content");
28 checkSupportedValues("flexItem", "align-items");
29 checkSupportedValues("flexItem", "align-self");
30 checkSupportedValues("flexItem", "align-content");
31 checkSupportedValues("flexItem", "justify-content");