Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / mime / standard-mode-loads-stylesheet-with-charset.html
blob497747e94cb10df19d63c857dce93bacbebb6db6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="resources/style-with-charset.php">
5 <script>
6 if (window.testRunner)
7 testRunner.dumpAsText();
9 window.onload = function() {
10 document.getElementById('result').innerHTML =
11 window.getComputedStyle(document.documentElement, null).
12 getPropertyValue("background-color");
14 </script>
15 </head>
16 <body>
17 This test passes if we apply the stylesheet (which turns the background color
18 green.) The background color is: <span id="result"></span>.
19 </body>
20 </html>