blob: 2782880206cc22d17c9a332f817bd7b50420ccb3 (
plain)
1
2
3
4
5
6
7
8
|
// |jit-test| allow-oom;
function startTest() {
if (typeof document != "object"
|| !document.location.href.match(/jsreftest.html/)) {}
};
gczeal(4);
startTest();
new ArrayBuffer( 8192 );
|