mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
18 lines
374 B
HTML
18 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>
|