1
0
Fork 0
firefox/layout/svg/tests/test_disabled.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

14 lines
563 B
HTML

<!DOCTYPE HTML>
<!--
Copied from https://bugzilla.mozilla.org/show_bug.cgi?id=744830
-->
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=166235">Mozilla Bug 166235</a>
<iframe></iframe>
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set": [["svg.disabled", true]]}, function() {
document.querySelector('iframe').src = "file_disabled_iframe.html";
});
</script>