Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-create-tbody-multiple-tbody.html
blob7072b63e5c0810699b9eb5d98f373a342074089c
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 if a table has multiple tbodies, createTBody() will add the new tbody after the last one.</p>
5 <table>
6 <thead>
7 </thead>
8 <tfoot>
9 </tfoot>
10 <tbody title="tbody1">
11 </tbody>
12 <tbody title="tbody2">
13 </tbody>
14 </table>
15 <script>
16 var table = document.getElementsByTagName("table")[0];
17 table.createTBody();
18 Markup.dump(table);
19 </script>