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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableElement.h

Issue 1486843002: Sync the HTMLTableElement return types with the spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLTableElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.h b/third_party/WebKit/Source/core/html/HTMLTableElement.h
index 2315b3aaba0245577a5bd83ca6bcb868e61b4bf0..1a9b6065ea8a434924d441c265e4d98e55342579 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLTableElement.h
@@ -51,14 +51,14 @@ public:
HTMLTableSectionElement* tFoot() const;
void setTFoot(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionState&);
- PassRefPtrWillBeRawPtr<HTMLElement> createTHead();
+ PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTHead();
void deleteTHead();
- PassRefPtrWillBeRawPtr<HTMLElement> createTFoot();
+ PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTFoot();
void deleteTFoot();
- PassRefPtrWillBeRawPtr<HTMLElement> createTBody();
- PassRefPtrWillBeRawPtr<HTMLElement> createCaption();
+ PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTBody();
+ PassRefPtrWillBeRawPtr<HTMLTableCaptionElement> createCaption();
void deleteCaption();
- PassRefPtrWillBeRawPtr<HTMLElement> insertRow(int index, ExceptionState&);
+ PassRefPtrWillBeRawPtr<HTMLTableRowElement> insertRow(int index, ExceptionState&);
void deleteRow(int index, ExceptionState&);
PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> rows();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698