Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / alignment / ensure-flexbox-compatibility-with-initial-values.html
blobced600848c444321939c7e8b5db304ef7b747fc5
1 <!DOCTYPE html>
2 <div id="container">
3 <div id="item"></div>
4 </div>
5 <div id="flexContainer" style="display: flex">
6 <div id="flexItem"></div>
7 </div>
8 <script src="../../resources/js-test.js"></script>
9 <script src="resources/alignment-parsing-utils.js"></script>
10 <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");
32 </script>