Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / media-query-serialization.html
blobeb885a4bda45134e81e88d3d5d9361b9d086c778
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <link rel="help" href="http://dev.w3.org/csswg/cssom/" />
5 <style type="text/css" media="NOT braille, tv and (orientation: landscape) AND (min-WIDTH:100px) and (max-width: 200px ), all and (color) and (color)">
6 </style>
7 <script src="../../resources/js-test.js"></script>
8 </head>
9 <body>
12 <script>
14 description(
15 'Test media query serialization. <a href="https://bugs.webkit.org/show_bug.cgi?id=39220">https://bugs.webkit.org/show_bug.cgi?id=39220</a>'
19 var expected = "not braille, tv and (max-width: 200px) and (min-width: 100px) and (orientation: landscape), (color)";
20 shouldBe("document.styleSheets[0].media.mediaText", "expected");
22 </script>
24 </body>
25 </html>