Chromium Code Reviews| 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); |
| }; |