Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / parser / noscript-with-javascript-disabled.html
blob92bc798b7b8a5237dc93f2d10f70dcc89dc86402
1 <html>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.dumpChildFramesAsText();
7 testRunner.overridePreference("WebKitJavaScriptEnabled", false);
9 </script>
11 <noscript>
12 <body>
13 FAIL: This content should not render because whether scripting is enabled
14 (for the purposes of the 'noscript' tag) is locked in when the parser starts.
15 </noscript>
17 The text inside the 'noscript' tag inside the iframe should render:
19 <iframe
20 src="data:text/html,<noscript><body>PASS: This test case verifies that contents inside &lt;noscript&gt; are rendered when Javascript is disabled.</body></noscript>">
21 </iframe>
23 </body>
24 </html>