View Single Post
Old 07-28-2018, 12:42 AM   #10
lucasmpr
Enthusiast
lucasmpr began at the beginning.
 
Posts: 45
Karma: 10
Join Date: Jul 2017
Device: Kindle
Well.

I tried a bit of stress testing.

Code:
<html>
<script src="http://console.re/connector.js" data-channel="projeto-abcdefgh" id="consolerescript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>

var a = 0


setInterval(lucLoader, 100);

function lucLoader () {
$.get( "[SOMEWEBSITE you're not afraid to spam] ", function( data ) {
  $( "#luc" ).html( a++ );
  if(a > 1000) { $( "#luc" ).html( data ); }
});
}

</script>


<div id="luc">
</div>
</html>

I didn't manage to crash my experimental browser in 20 minutes of testing.
lucasmpr is offline   Reply With Quote