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