blob: cbf104ac99cdc63acc0b12854f0f7f2ea94af6dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<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>
|