blob: 81f56cc4fd30b752b817abda8319cc9bfb74148e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function doTest() {
window.frames[0].document.body.innerHTML =
"<img src='passouter.png' " +
"onload='window.parent.document.documentElement.className = ""'>";
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
<iframe></iframe>
</body>
</html>
|