Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2975)

Unified Diff: core/html/HTMLTableElement.idl

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLTableCellElement.idl ('k') | core/html/HTMLTextAreaElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLTableElement.idl
diff --git a/core/html/HTMLTableElement.idl b/core/html/HTMLTableElement.idl
index acf26848b9319abfe31ada401393863dbeaca9eb..b36de85c1d1a8b332168e9c14f5db4a6438e567e 100644
--- a/core/html/HTMLTableElement.idl
+++ b/core/html/HTMLTableElement.idl
@@ -23,18 +23,18 @@
interface HTMLTableElement : HTMLElement {
// TODO(philipj): The caption, tHead and tFoot setters should never throw.
[RaisesException=Setter] attribute HTMLTableCaptionElement? caption;
- HTMLElement createCaption();
+ HTMLTableCaptionElement createCaption();
void deleteCaption();
[RaisesException=Setter] attribute HTMLTableSectionElement? tHead;
- HTMLElement createTHead();
+ HTMLTableSectionElement createTHead();
void deleteTHead();
[RaisesException=Setter] attribute HTMLTableSectionElement? tFoot;
- HTMLElement createTFoot();
+ HTMLTableSectionElement createTFoot();
void deleteTFoot();
readonly attribute HTMLCollection tBodies;
- HTMLElement createTBody();
+ HTMLTableSectionElement createTBody();
readonly attribute HTMLCollection rows;
- [RaisesException] HTMLElement insertRow(optional long index = -1);
+ [RaisesException] HTMLTableRowElement insertRow(optional long index = -1);
[RaisesException] void deleteRow(long index);
// attribute boolean sortable;
// void stopSorting();
« no previous file with comments | « core/html/HTMLTableCellElement.idl ('k') | core/html/HTMLTextAreaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698