Skip to content

Commit c6b84d4

Browse files
committed
HTMLTableElement.deleteRow() doesn’t have a default value.
See https://html.spec.whatwg.org/multipage/tables.html#the-table-element:concept-element-dom
1 parent 3e7a009 commit c6b84d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/org/scalajs/dom/raw/Html.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ abstract class HTMLTableElement extends HTMLElement {
698698
*
699699
* MDN
700700
*/
701-
def deleteRow(index: Int = js.native): Unit = js.native
701+
def deleteRow(index: Int): Unit = js.native
702702

703703
def createTBody(): HTMLElement = js.native
704704

0 commit comments

Comments
 (0)