Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-create-tbody.html
blob36eaa72e196436c11def115e4302676ea1451f99
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 at the end of the table.</p>
5 <table>
6 <thead>
7 </thead>
8 <tfoot>
9 </tfoot>
10 </table>
11 <script>
12 var table = document.getElementsByTagName("table")[0];
13 table.createTBody();
14 Markup.dump(table);
15 </script>