1
0
Fork 0
firefox/editor/composer/crashtests/removing-editable-xslt.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

17 lines
374 B
HTML

<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("i").src = "removing-editable-xslt-inner.xhtml";
setTimeout(function() {
document.body.removeChild(document.getElementById("i"));
document.documentElement.removeAttribute("class");
}, 0);
}
</script>
</head>
<body onload="boom();">
<iframe id="i"></iframe>
</body>
</html>