blob: e485e0cd8cdac39cd4c043efb8f4562143026edc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html class="reftest-wait">
<script>
function boom() {
var ifr = document.getElementById("ifr");
ifr.style.display = "none";
// flush layout
document.documentElement.offsetLeft;
ifr.style.display = "block";
document.documentElement.removeAttribute("class");
}
</script>
<body onload="boom();">
<iframe id="ifr" src="816948-iframe.html">
</iframe>
</body>
</html>
|