From 5fa3e5cf69e141566b7e3559c2ee2192a78b3b02 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Fri, 20 Apr 2018 23:32:44 +0900 Subject: [PATCH] Editorial: narrow the return type of insertRow() --- source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source b/source index 9c7f6f67cf2..6c2e8a59d32 100644 --- a/source +++ b/source @@ -40199,7 +40199,7 @@ interface HTMLTableColElement : HTMLElement { HTMLConstructor] interface HTMLTableSectionElement : HTMLElement { [SameObject] readonly attribute HTMLCollection rows; - HTMLElement insertRow(optional long index = -1); + HTMLTableRowElement insertRow(optional long index = -1); [CEReactions] void deleteRow(long index); };

Uses HTMLTableSectionElement. The