Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-create-tbody-existing-tbody.html
blob1bc75a66658b902bffe10f7156ec981f8bd8ab8f
1 <!DOCTYPE html>
2 <script src="../../resources/dump-as-markup.js"></script>
3 <p>https://bugs.webkit.org/show_bug.cgi?id=84465 : Implement createTBody for table element.</p>
4 <p>This test verify that createTBody() appends a new tbody tag after the existing one.</p>
5 <table>
6 <thead>
7 </thead>
8 <tfoot>
9 </tfoot>
10 <tbody title="existing tbody">
11 </tbody>
12 </table>
13 <script>
14 var table = document.getElementsByTagName("table")[0];
15 table.createTBody();
16 Markup.dump(table);
17 </script>