4 Test passes if it does not crash.
26 if (window
.testRunner
) {
27 testRunner
.dumpAsText();
28 testRunner
.waitUntilDone();
32 test1
= document
.createElement('div');
33 test1
.setAttribute('id', 'test1');
34 document
.body
.appendChild(test1
);
35 test2
= document
.createElement('div');
36 test2
.setAttribute('id', 'test2');
37 test1
.appendChild(test2
);
38 document
.body
.offsetTop
;
39 document
.body
.style
.zoom
= 2;
40 if (window
.testRunner
) {
41 GCController
.collect();
42 eventSender
.mouseMoveTo(500, 500);
43 testRunner
.notifyDone();
46 window
.onload
= crash
;