зеркало из https://github.com/mozilla/pjs.git
Bug 579244 - attempt to fix an intermittent test timeout by ensuring that onload fires. a=NPOTB
This commit is contained in:
Родитель
459fb2ea6c
Коммит
3c81fd0f75
|
@ -11,10 +11,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=446483
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=446483">Mozilla Bug 446483</a>
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=446483">Mozilla Bug 446483</a>
|
||||||
<p id="display">
|
<p id="display"></p>
|
||||||
<iframe src="bug446483-iframe.html"></iframe>
|
|
||||||
<iframe src="bug446483-iframe.html"></iframe>
|
|
||||||
</p>
|
|
||||||
<div id="content" style="display: none">
|
<div id="content" style="display: none">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -31,8 +28,17 @@ function gc() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function runTest() {
|
function runTest() {
|
||||||
|
document.getElementById('display').innerHTML =
|
||||||
|
'<iframe src="bug446483-iframe.html"><\/iframe>\n' +
|
||||||
|
'<iframe src="bug446483-iframe.html"><\/iframe>\n';
|
||||||
|
|
||||||
setInterval(gc, 1000);
|
setInterval(gc, 1000);
|
||||||
setTimeout(function(){document.getElementById('display').innerHTML='';ok(true,''); SimpleTest.finish();}, 4000);
|
|
||||||
|
setTimeout(function() {
|
||||||
|
document.getElementById('display').innerHTML = '';
|
||||||
|
ok(true, '');
|
||||||
|
SimpleTest.finish();
|
||||||
|
}, 4000);
|
||||||
}
|
}
|
||||||
|
|
||||||
SimpleTest.waitForExplicitFinish();
|
SimpleTest.waitForExplicitFinish();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче