blob: be52b60231a3e9e7dea6a1b3e4080a5b01467eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<script>
function start() {
var length = history.length;
document.open();
document.write("<h5 id='dynamic'>document.written content</h5>");
document.close();
opener.is(history.length, length,
"document.open/close should not change history");
opener.finishTest();
}
</script>
</head>
<body onload="start();">
<h5>static content</h5>
</body>
</html>
|