зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
631 B
HTML
25 строки
631 B
HTML
<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>
|