This commit is contained in:
roc+@cs.cmu.edu 2008-01-26 16:16:04 -08:00
Родитель 019ef8a41f
Коммит 6ab7498fef
3 изменённых файлов: 50 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,6 @@
<!DOCTYPE HTML>
<html>
<body>
Done
</body>
</html>

Просмотреть файл

@ -0,0 +1,43 @@
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script type="text/javascript">
var loopCount = 0;
var pause = 10; // smaller values make the bug more likely to occur
var src = "data:text/html,iframe 1 <iframe width='100' height='100' src='data:text/html,iframe 2'>";
function ap()
{
document.getElementById("div").style.position = "absolute";
setTimeout(bp, pause);
}
function bp()
{
document.getElementById("div").style.position = "";
setTimeout(cp, pause);
}
function cp()
{
document.getElementById("iframe").setAttribute("src", src);
setTimeout(looop, pause);
}
function looop()
{
loopCount++;
if (loopCount < 20) {
ap();
} else {
document.body.textContent = "Done";
document.documentElement.className = '';
}
}
</script>
</head>
<body onload="ap();"><div id="div"><iframe id="iframe"></iframe></div></body>
</html>

Просмотреть файл

@ -663,4 +663,5 @@ random == 403134-1.html 403134-1-ref.html # bug 405377
!= 409659-1c.html 409659-1-ref.html
== 409659-1d.html 409659-1-ref.html
== 411334-1.xml 411334-1-ref.xml
== 413292-1.html 413292-1-ref.html
== 413361-1.html 413361-1-ref.html