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

Unified Diff: Source/core/html/HTMLTableSectionElement.idl

Issue 263193002: HTMLTableSectionElement.insertRow()'s argument default value should be -1 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
Index: Source/core/html/HTMLTableSectionElement.idl
diff --git a/Source/core/html/HTMLTableSectionElement.idl b/Source/core/html/HTMLTableSectionElement.idl
index 836b712c43ef2682c5a4776f9609cebefb617819..a8f0b89419149d0dbb5e58448a0735a6d785300e 100644
--- a/Source/core/html/HTMLTableSectionElement.idl
+++ b/Source/core/html/HTMLTableSectionElement.idl
@@ -24,6 +24,6 @@ interface HTMLTableSectionElement : HTMLElement {
[Reflect=charoff] attribute DOMString chOff;
[Reflect] attribute DOMString vAlign;
readonly attribute HTMLCollection rows;
- [RaisesException] HTMLElement insertRow([Default=Undefined] optional long index);
+ [RaisesException] HTMLElement insertRow(optional long index);
eseidel 2014/05/05 15:33:42 Should this have a return value of HTMLTableRowEle
Inactive 2014/05/05 15:35:49 It could but the specification says "HTMLElement":
[RaisesException] void deleteRow([Default=Undefined] optional long index);
};
« Source/core/html/HTMLTableSectionElement.cpp ('K') | « Source/core/html/HTMLTableSectionElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698