Home | History | Annotate | Download | only in Parser
      1 <!DOCTYPE html>
      2 <body>
      3 <pre id="log"></pre>
      4 <script src="resources/runner.js"></script>
      5 <script>
      6 start(20, function() {
      7     var testDiv = document.createElement("div");
      8     testDiv.style.display = "none";
      9     document.body.appendChild(testDiv);
     10     for (var x = 0; x < 100000; x++) {
     11         testDiv.innerHTML = "This is a tiny HTML document";
     12     }
     13     document.body.removeChild(testDiv);
     14 });
     15 </script>
     16 </body>
     17