mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
305 B
HTML
22 lines
305 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
var childLoads = 0;
|
||
|
function inc()
|
||
|
{
|
||
|
++childLoads;
|
||
|
if (childLoads >= 2)
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<iframe src="366271-1-frame.svg" onload="inc();"></iframe>
|
||
|
|
||
|
</body>
|
||
|
</html>
|