Auto merge of #7063 - dzbarsky:caption, r=Ms2ger

Implement createCaption and deleteCaption on HTMLTableElement



<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7063)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-08-09 04:45:28 -06:00
commit f41834e321
8 changed files with 59 additions and 51 deletions

View file

@ -6,8 +6,8 @@
// https://www.whatwg.org/html/#htmltableelement
interface HTMLTableElement : HTMLElement {
attribute HTMLTableCaptionElement? caption;
//HTMLElement createCaption();
//void deleteCaption();
HTMLElement createCaption();
void deleteCaption();
// attribute HTMLTableSectionElement? tHead;
//HTMLElement createTHead();
//void deleteTHead();