test_disabled.html (563B)
1 <!DOCTYPE HTML> 2 <!-- 3 Copied from https://bugzilla.mozilla.org/show_bug.cgi?id=744830 4 --> 5 <script src="/tests/SimpleTest/SimpleTest.js"></script> 6 <link rel="stylesheet" href="/tests/SimpleTest/test.css"> 7 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=166235">Mozilla Bug 166235</a> 8 <iframe></iframe> 9 <script type="application/javascript"> 10 SimpleTest.waitForExplicitFinish(); 11 SpecialPowers.pushPrefEnv({"set": [["svg.disabled", true]]}, function() { 12 document.querySelector('iframe').src = "file_disabled_iframe.html"; 13 }); 14 </script>