mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
26 lines
733 B
HTML
26 lines
733 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
window.onload = function() {
|
|
window.frames[0].location =
|
|
'javascript:document.write(""); document.close(); ' +
|
|
'parent.continueTest();'
|
|
}
|
|
|
|
function continueTest() {
|
|
// Do this part async just in case
|
|
setTimeout(function() {
|
|
window.frames[0].document.body.innerHTML =
|
|
"<img src='passouter.png' " +
|
|
"onload='window.parent.document.documentElement.className = ""'>";
|
|
}, 0);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<iframe src="about:blank"></iframe>
|
|
</body>
|
|
</html>
|
|
|