Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / webkit-media-controls-display-expected.html
blobf5ea3ee1f06f4432b16adaf5afd9e7ce754366ee
1 <!DOCTYPE html>
2 <p>Overloading ::-webkit-media-controls display property. PASS if it doesn't crash.</p>
3 <style>
4 video { width: 200px; height: 30px; }
5 </style>
6 <script>
7 var displayValues = ["-webkit-box", "-webkit-flex", "-webkit-inline-box",
8 "-webkit-inline-flex", "block", "flex", "grid", "inline", "inline-block",
9 "inline-flex", "inline-grid", "inline-table", "list-item", "none", "table",
10 "table-caption", "table-cell", "table-column", "table-column-group",
11 "table-footer-group", "table-header-group", "table-row", "table-row-group"];
13 displayValues.forEach(function(value) {
14 var video = document.createElement("video");
15 switch (value) {
16 case "-webkit-flex":
17 case "-webkit-inline-flex":
18 case "flex":
19 case "inline-flex":
20 video.controls = true;
22 document.body.appendChild(video);
23 });
24 </script>