Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-split.html
blob98acd9a9c40cc1c3961dcc59ac0a7f57dcd89846
1 <!DOCTYPE html>
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 row between ['A'] and ['C','D']. -->
5 <div id="container">
6 <div style="display: table-header-group">Header</div>
7 <div id="div1">A</div>
8 <div id="div2">C</div>
9 <div id="div3">D</div>
10 <div style="display: table-footer-group">Footer</div>
11 </div>
12 <script>
13 container = document.getElementById('container');
14 container.style.display = 'table';
15 document.body.offsetTop;
16 tr = document.createElement('tr');
17 tr.appendChild(document.createTextNode('B'));
18 container.insertBefore(tr, document.getElementById('div2'));
19 </script>
20 </html>