summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/212563-2.html
blob: a3ced55b2c7cfb21fb9e4504654a7092de14209e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>