blob: 8bebdbf4b6ff2291dea9c895c7846bfc3fb96c7b (
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() {
var iframe = document.getElementById('inner');
iframe.addEventListener("load", function() {
document.documentElement.removeAttribute("class");
}, false);
iframe.src = "data:text/html,";
dump("Outer onload\n");
}
</script>
</head>
<body onload="boom()">
<iframe src="428844-1-inner.xhtml" id="inner"></iframe>
</body>
</html>
|