blob: 203bd2d1c31506dd6d1d2c0b0f1f7b3b02faa183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<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>
|