blob: 98acd9a9c40cc1c3961dcc59ac0a7f57dcd89846 [file] [log] [blame]
<!DOCTYPE html>
<html style="font-family: Ahem; font-size: 10px; -webkit-font-smoothing: none; color: white;">
<!-- WebKit bug 82630 - Incorrect placement of new child to table when before child parent is not |this|.
Test passes if you see 'B' wrapped in a table row between ['A'] and ['C','D']. -->
<div id="container">
<div style="display: table-header-group">Header</div>
<div id="div1">A</div>
<div id="div2">C</div>
<div id="div3">D</div>
<div style="display: table-footer-group">Footer</div>
</div>
<script>
container = document.getElementById('container');
container.style.display = 'table';
document.body.offsetTop;
tr = document.createElement('tr');
tr.appendChild(document.createTextNode('B'));
container.insertBefore(tr, document.getElementById('div2'));
</script>
</html>