mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
17 lines
265 B
HTML
17 lines
265 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
var numLoads = 0;
|
|
function loaded()
|
|
{
|
|
numLoads++;
|
|
if (numLoads == 5) {
|
|
document.documentElement.className = "";
|
|
}
|
|
}
|
|
</script>
|
|
<body>
|
|
<iframe onload="loaded()" src="331883-1-inner.html"></iframe>
|
|
</body>
|
|
</html>
|