blob: 26439e4e94fd3a86915fdb1b9491aad7d7e5f05b (
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, false);
</script>
</head>
<body>
<iframe></iframe>
</body>
</html>
|