2 <body onload=
"runTest()">
5 testRunner
.dumpAsText();
9 document
.body
.offsetTop
;
10 var container
= document
.getElementById('container');
11 var test
= document
.getElementById('test');
12 var blockquote
= document
.getElementById('blockquote');
13 blockquote
.parentNode
.removeChild(blockquote
);
14 test
.appendChild(blockquote
);
15 document
.body
.offsetTop
;
16 test
.parentNode
.removeChild(test
);
17 if (window
.testRunner
) {
18 // Force a focus in which forces a paint that can trigger the crash.
19 testRunner
.setWindowIsKey(false);
20 testRunner
.setWindowIsKey(true);
21 document
.getElementById("results").innerHTML
= "PASS";
25 <div>This test passes if it does not crash.
</div>
26 <div id=
"container" style=
"display: -webkit-box;">
28 <span style=
"float: right;">This is a floating span.
</span>
33 <blockquote id=
"blockquote">blockquote
</blockquote>