779707.html (249B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var x = new XMLHttpRequest(); 9 x.open('GET', "data:text/plain,2", false); 10 x.send(); 11 12 new Worker("data:text/javascript,3"); 13 } 14 15 </script> 16 </head> 17 18 <body onload="boom();"></body> 19 </html>