Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Created May 30, 2014 20:47
Show Gist options
  • Save matthewpizza/f288ecfd52927712a50e to your computer and use it in GitHub Desktop.
Save matthewpizza/f288ecfd52927712a50e to your computer and use it in GitHub Desktop.
Finding DOM limits
<body>
<script>
for (var i = 0; i < 10000000000; i++) {
window.setInterval( function() {
var iframe = document.createElement('iframe');
document.body.appendChild(iframe);
}, 0.00000000000000000001 );
};
</script>
</body>
@matthewpizza
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment