Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / tokenizer / inline-script-stylesheet.html
blob541775742775778ce35f202a904fae9a8cd00627
1 <script>
2 if (window.testRunner)
3 testRunner.dumpAsText();
4 </script>
5 <link rel=stylesheet href="data:text/css,span{color:green;}">
6 Test that inline script blocks on stylesheet load:
7 <span>
8 <script>
9 document.write(document.styleSheets[0] ? "PASS" : "FAIL");
10 </script>
11 </span>