3 .fixed { position: fixed; }
4 .col { -webkit-column-span: all; }
5 .colcount:nth-child(
2n) { -webkit-column-count:
1; }
6 .colcount { padding-left:
65536px; }
10 testRunner
.dumpAsText();
12 var nav
= document
.createElement('nav');
13 nav
.setAttribute('class', 'col');
15 document
.body
.offsetTop
;
17 dt
.parentNode
.removeChild(dt
);
19 var p
= document
.createElement('p');
21 document
.body
.offsetTop
;
23 var text
= document
.createTextNode('88');
24 div
.appendChild(text
);
26 p
.setAttribute("class", "fixed");
28 var command
= document
.createElement('command');
29 command
.setAttribute('class', 'colcount');
30 nav
.appendChild(command
);
37 <div class=
"colcount" id=
"div"></div>
38 <p> When a block element becomes positioned or float we should not strip anonymous blocks wrapping its siblings if any of their children are inline.
</p>