mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
378ef8cf62
--HG-- extra : rebase_source : d4dd42e4233e478edf1024536751a225ff1e0428
23 lines
478 B
HTML
23 lines
478 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function run() {
|
|
document.open();
|
|
document.write("<h5 id='dynamic'>document.written content</h5>");
|
|
document.close();
|
|
window.history.go(-1);
|
|
opener.setTimeout("isTestDynamic()", 2500);
|
|
}
|
|
|
|
function start() {
|
|
if (++opener.testCount == 1) {
|
|
setTimeout(run, 0);
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="start();">
|
|
<h5>static content</h5>
|
|
</body>
|
|
</html>
|