Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / mime / standard-mode-does-not-load-stylesheet-with-text-plain-and-css-extension.html
blobd14469e75c5559ae938dfa3cad61c817bb66df92
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="resources/style-with-text-plain.php/foo.css">
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>