summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/212563-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/212563-2.html')
-rw-r--r--layout/reftests/bugs/212563-2.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/bugs/212563-2.html b/layout/reftests/bugs/212563-2.html
new file mode 100644
index 0000000000..a3ced55b2c
--- /dev/null
+++ b/layout/reftests/bugs/212563-2.html
@@ -0,0 +1,24 @@
+<html class="reftest-wait">
+<head>
+<script type="text/javascript">
+
+function p(n)
+{
+ dump("Test 212563-2 says: " + n + "\n");
+}
+
+// Step 1: replace the innermost frame
+function changeInnermost(iframeElement)
+{
+ iframeElement.setAttribute("src", "212563-2-innermost-a.html");
+}
+
+// Step 2: replace the middle iframe (from the new innermost iframe's onload handler)
+var replacementForMiddleFrame = "<body onload=top.p(5);parent.document.documentElement.removeAttribute('class');>replacement for middle frame<script>top.p(2);<\/script><\/body>";
+
+</script>
+</head>
+<body>
+<iframe src="212563-2-inner.html"></iframe>
+</body>
+</html>