mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
2a9adb8f59
--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>
|