tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug303267.html (433B)


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