blob: 6d896bc4667cac324fd49945e09f1fc05d486bf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<script>
function boom()
{
var w = new Worker("data:text/javascript;charset=UTF-8,");
w.postMessage(new Blob([], {}));
}
</script>
<body onload="boom();"></body>
|