From ee74433848936fe5fd66620275af0779529992ef Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Fri, 31 Mar 2017 15:51:58 +0900 Subject: [PATCH] Editorial: narrow the return type of insertCell() Fixes #2487. --- source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source b/source index 4e466349b06..ef860791718 100644 --- a/source +++ b/source @@ -39816,7 +39816,7 @@ interface HTMLTableRowElement : HTMLElement { readonly attribute long rowIndex; readonly attribute long sectionRowIndex; [SameObject] readonly attribute HTMLCollection cells; - HTMLElement insertCell(optional long index = -1); + HTMLTableCellElement insertCell(optional long index = -1); [CEReactions] void deleteCell(long index); };