1
0
Fork 0
firefox/docshell/test/chrome/bug303267.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
433 B
HTML

<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>