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 cell between ['A'] and ['C','D']. -->
11 container
= document
.getElementById('container');
12 container
.style
.display
= 'table-row';
13 document
.body
.offsetTop
;
14 td
= document
.createElement('td');
15 td
.appendChild(document
.createTextNode('B'));
16 container
.insertBefore(td
, document
.getElementById('div2'));