blob: b6feb657aa3c9f4ae8a5015d7332ce7f2d63ca42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Binary: cache/js-dbg-64-b01eb1ba58ce-linux
// Flags:
//
expect = 'Test skipped.';
function addPointImagedata(pointArray, n, col, row) {
pointArray[expect + 2] = 2;
}
function createMandelSet() {
points = new Array;
for (var idx = 0; idx < 1440000 ; ++idx) {
points[idx] = 0
}
addPointImagedata(points, ({}, {}), 0,0)
}
createMandelSet();
|