779707.html 249 B

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