mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|