3 if (window
.testRunner
) {
4 testRunner
.dumpAsText();
5 testRunner
.dumpResourceResponseMIMETypes();
8 This test requires DumpRenderTree to see the log of what resources are loaded.
9 It verifies that noscript-image1.png is not loaded because it is in a noscript block and
10 noscript-image2.png is loaded because it is not in a noscript block.
13 document
.write('<script src="resources/non-existant.js"></scr'+'ipt>');
14 document
.write('<noscript>');
15 document
.write('<img src="resources/noscript-image1.png">');
16 document
.write('</noscript>');
20 document
.write('<noscript>');
24 document
.write('<script src="resources/non-existant.js"></scr'+'ipt>');
25 document
.write('<img src="resources/noscript-image2.png">');