blob: 4da39071c4599cf05481454a8c3ba8617bc534b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>
function boom()
{
var ac = new AudioContext();
for (var j = 0; j < 200; ++j) {
ac.createScriptProcessor(undefined);
}
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();"></body>
</html>
|