Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / viewport-media-query-synchronous.html
blob8d2386e012891dd7b7172deb2964ec8051ea270b
1 <html lang=en>
2 <head>
3 <script src="../../resources/js-test.js"></script>
4 <style>
5 #test { background-color: red; }
6 @media all and (min-width:0px)
8 #test { background-color: green }
10 </style>
11 </head>
12 <body>
13 <div id=test>foo</div>
14 <script>
15 description("Test for bug 75633");
16 shouldBe('window.getComputedStyle(document.getElementById("test")).backgroundColor','"rgb(0, 128, 0)"');
17 </script>
18 </body>