mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 947755, try to avoid use of setTimeout when there is an event to use, r=khuey
This commit is contained in:
parent
974220b68a
commit
f0a068a01b
@ -6,7 +6,6 @@
|
||||
document.write("<h5 id='dynamic'>document.written content</h5>");
|
||||
document.close();
|
||||
window.history.go(-1);
|
||||
opener.setTimeout("isTestDynamic()", 2500);
|
||||
}
|
||||
|
||||
function start() {
|
||||
@ -14,6 +13,15 @@
|
||||
setTimeout(run, 0);
|
||||
}
|
||||
}
|
||||
|
||||
window.addEventListener("pageshow",
|
||||
function() {
|
||||
++opener.file_document_write_1_loadCount;
|
||||
if (opener.file_document_write_1_loadCount == 2) {
|
||||
opener.setTimeout("isTestDynamic()", 0);
|
||||
}
|
||||
opener.ok(opener.file_document_write_1_loadCount <= 2);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body onload="start();">
|
||||
|
@ -49,6 +49,7 @@ function nextTest_() {
|
||||
}
|
||||
|
||||
// Needed by file_document_write_1.html
|
||||
window.file_document_write_1_loadCount = 0;
|
||||
function isTestDynamic() {
|
||||
var dyn = testWindow.document.getElementById("dynamic");
|
||||
is(dyn, null, "Should have gone back to the static page!");
|
||||
|
Loading…
Reference in New Issue
Block a user