2 <html style=
"font-family: Ahem; font-size: 10px; -webkit-font-smoothing: none; color: white;">
3 <!-- WebKit bug 82630 - Incorrect placement of new child to table when before child parent is not |this|.
4 Test passes if you see 'B' wrapped in a table section between ['A'] and ['C','D']. -->
6 <div style=
"display: table-header-group">Header
</div>
10 <div style=
"display: table-footer-group">Footer
</div>
13 container
= document
.getElementById('container');
14 container
.style
.display
= 'table';
15 document
.body
.offsetTop
;
16 section
= document
.createElement('div');
17 section
.style
.display
= 'table-row-group';
18 section
.appendChild(document
.createTextNode('B'));
19 container
.insertBefore(section
, document
.getElementById('div2'));