3 .absolutePosition { position: fixed; }
4 .float:before { float: right; content: ''; }
5 .float:first-letter { float: right; }
6 .inline::first-letter { content: ''; }
10 document
.body
.offsetTop
;
11 parent
= document
.getElementById('parent');
12 child
.setAttribute('class', 'inline');
13 document
.body
.offsetTop
;
14 parent
.removeChild(child
);
17 window
.onload
= crash
;
18 if (window
.testRunner
)
19 testRunner
.dumpAsText();
21 <div class=
"float" id=
"parent">
22 <div class=
"absolutePosition" id=
"child"></div>
23 Test passes if no crash.