Implement createCaption and deleteCaption on HTMLTableElement

Update web-platform-tests expected data
This commit is contained in:
David Zbarsky 2015-08-07 04:07:15 -04:00
parent 78792cced2
commit e24a867ab6
8 changed files with 59 additions and 51 deletions

View file

@ -37,6 +37,7 @@
table.caption = caption;
assert_equals(caption.parentNode, table);
assert_equals(table.firstChild, caption);
assert_equals(table.caption.innerHTML, "new caption");
captions = table.getElementsByTagName('caption');