gecko/layout/reftests/bugs/482659-1c.html
2009-03-17 11:08:59 +00:00

26 lines
714 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 = &quot;&quot;'";
}, 0);
}
</script>
</head>
<body>
<iframe></iframe>
</body>
</html>