blob: 32b575eee8dc9a30e8881ca58588cc5f69e7e1a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<html>
<head>
<title>
bug303267.html
</title>
</head>
<body onpageshow="showpageshowcount()">
<script>
var pageshowcount = 0;
function showpageshowcount()
{
pageshowcount++;
var div1 = document.getElementById("div1");
while (div1.firstChild)
{
div1.removeChild(div1.firstChild);
}
div1.appendChild(document.createTextNode(
"pageshowcount: " + pageshowcount));
}
</script>
<div id="div1">
</div>
</body>
</html>
|