mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
435 B
HTML
26 lines
435 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.removeChild(div1.firstChild);
|
||
|
}
|
||
|
div1.appendChild(document.createTextNode(
|
||
|
"pageshowcount: " + pageshowcount));
|
||
|
}
|
||
|
</script>
|
||
|
<div id="div1">
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|