Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / mime / standard-mode-does-not-load-stylesheet-with-text-plain.html
blob6e334b0961775ac391d04c95ab10ba47d7f75efc
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="resources/style-with-text-plain.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 do NOT apply the stylesheet (which turns the background
18 color red.) The background color is: <span id="result"></span>.
19 </body>
20 </html>