summaryrefslogtreecommitdiffstats
path: root/docshell/test/chrome/bug303267.html
blob: 21b9f30311af7a2b11348eb173b6ff085024d423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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.firstChild.remove();
  }
  div1.appendChild(document.createTextNode(
    "pageshowcount: " + pageshowcount));
}
</script>
<div id="div1">
	</div>
</body>
</html>