mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
17 lines
366 B
HTML
17 lines
366 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function runtest() {
|
|
var i = document.getElementById("i");
|
|
i.parentNode.style.display = "none";
|
|
i.parentNode.style.display = "";
|
|
document.documentElement.offsetLeft;
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="runtest();">
|
|
<iframe id="i" src="data:text/html,text">
|
|
</body>
|
|
</html>
|