2 p { position: fixed; height:
1px; }
3 hgroup { position: fixed; padding-bottom:
1px; padding-left:
100%; -webkit-column-span: all; }
4 sup { display: -webkit-box; }
8 testRunner
.dumpAsText();
10 window
.onload = function() {
11 document
.documentElement
.appendChild(document
.createElement('span'));
12 var grandparent
= document
.createElement('p');
13 document
.documentElement
.appendChild(grandparent
);
14 document
.execCommand('SelectAll', '');
16 grandparent
.appendChild(document
.createElement('hgroup'));
17 var oldParent
= document
.createElement('span');
18 grandparent
.appendChild(oldParent
);
19 var childToMove
= document
.createElement('sup');
20 oldParent
.appendChild(childToMove
);
22 document
.body
.offsetHeight
;
24 // Move childToMove under the orphaned parent.
25 var orphanedParent
= document
.createElement('div');
26 orphanedParent
.appendChild(childToMove
);
29 This is modified from a cluster-fuzz test case. Passes if no crash.