From ddc5b6d19a3b2b4414109794d0dc3215159b59f0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 24 Feb 2023 14:49:26 +0000 Subject: [PATCH 01/14] Update scalafmt-core to 3.7.2 --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 6ddb4a03c..157cb9646 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.7.1 +version = 3.7.2 runner.dialect = scala213source3 project.git = true style = Scala.js From 397b045e8b0ed23d12a35340f7b1dae2df167377 Mon Sep 17 00:00:00 2001 From: faveoled <85760289+faveoled@users.noreply.github.com> Date: Mon, 6 Mar 2023 12:31:31 +0300 Subject: [PATCH 02/14] Blob#slice doc fix --- dom/src/main/scala/org/scalajs/dom/Blob.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/src/main/scala/org/scalajs/dom/Blob.scala b/dom/src/main/scala/org/scalajs/dom/Blob.scala index cd2156692..b2d1ae3e8 100644 --- a/dom/src/main/scala/org/scalajs/dom/Blob.scala +++ b/dom/src/main/scala/org/scalajs/dom/Blob.scala @@ -35,7 +35,7 @@ class Blob(blobParts: js.Iterable[BlobPart], options: BlobPropertyBag = js.nativ */ def `type`: String = js.native - /** A string indicating the MIME type of the data contained in the Blob. If the type is unknown, this string is empty. + /** Creates and returns a new Blob object which contains data from a subset of the blob on which it's called. */ def slice(start: Double = js.native, end: Double = js.native, contentType: String = js.native): Blob = js.native From 99c65c3d8a8adf4a0f1a1e153dcfea41e178357a Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Mon, 6 Mar 2023 17:23:13 +0000 Subject: [PATCH 03/14] Formatting --- dom/src/main/scala/org/scalajs/dom/Blob.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dom/src/main/scala/org/scalajs/dom/Blob.scala b/dom/src/main/scala/org/scalajs/dom/Blob.scala index b2d1ae3e8..8ace5bb0f 100644 --- a/dom/src/main/scala/org/scalajs/dom/Blob.scala +++ b/dom/src/main/scala/org/scalajs/dom/Blob.scala @@ -35,8 +35,7 @@ class Blob(blobParts: js.Iterable[BlobPart], options: BlobPropertyBag = js.nativ */ def `type`: String = js.native - /** Creates and returns a new Blob object which contains data from a subset of the blob on which it's called. - */ + /** Creates and returns a new Blob object which contains data from a subset of the blob on which it's called. */ def slice(start: Double = js.native, end: Double = js.native, contentType: String = js.native): Blob = js.native /** Returns a ReadableStream that can be used to read the contents of the blob. */ From 38b238b6107a95c9d308aa4139046c2a53fa0ce7 Mon Sep 17 00:00:00 2001 From: Christoph Bunte Date: Tue, 28 Mar 2023 19:23:25 +0200 Subject: [PATCH 04/14] add Path2D and related methods --- api-reports/2_12.txt | 15 ++++++++ api-reports/2_13.txt | 15 ++++++++ .../dom/CanvasRenderingContext2D.scala | 8 +++++ .../main/scala/org/scalajs/dom/Path2D.scala | 34 +++++++++++++++++++ 4 files changed, 72 insertions(+) create mode 100644 dom/src/main/scala/org/scalajs/dom/Path2D.scala diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index b909d6f20..8ea9629f4 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -1089,6 +1089,9 @@ CanvasRenderingContext2D[JC] def createRadialGradient(x0: Double, y0: Double, r0 CanvasRenderingContext2D[JC] def drawImage(image: HTMLElement, offsetX: Double, offsetY: Double, width: Double?, height: Double?, canvasOffsetX: Double?, canvasOffsetY: Double?, canvasImageWidth: Double?, canvasImageHeight: Double?): Unit CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit CanvasRenderingContext2D[JC] def fill(): Unit +CanvasRenderingContext2D[JC] def fill(fillRule: String): Unit +CanvasRenderingContext2D[JC] def fill(path: Path2D): Unit +CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: String): Unit CanvasRenderingContext2D[JC] def fillRect(x: Double, y: Double, w: Double, h: Double): Unit CanvasRenderingContext2D[JC] var fillStyle: js.Any CanvasRenderingContext2D[JC] def fillText(text: String, x: Double, y: Double, maxWidth: Double?): Unit @@ -1122,6 +1125,7 @@ CanvasRenderingContext2D[JC] var shadowColor: String CanvasRenderingContext2D[JC] var shadowOffsetX: Double CanvasRenderingContext2D[JC] var shadowOffsetY: Double CanvasRenderingContext2D[JC] def stroke(): Unit +CanvasRenderingContext2D[JC] def stroke(path: Path2D): Unit CanvasRenderingContext2D[JC] def strokeRect(x: Double, y: Double, w: Double, h: Double): Unit CanvasRenderingContext2D[JC] var strokeStyle: js.Any CanvasRenderingContext2D[JC] def strokeText(text: String, x: Double, y: Double, maxWidth: Double?): Unit @@ -16627,6 +16631,17 @@ ParentNode[JT] def children: HTMLCollection[Element] ParentNode[JT] def firstElementChild: Element ParentNode[JT] def lastElementChild: Element ParentNode[JT] def replaceChildren(nodes: Node | String*): Unit +Path2D[JC] def addPath(path: Path2D): Unit +Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit +Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit +Path2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit +Path2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit +Path2D[JC] def closePath(): Unit +Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit +Path2D[JC] def lineTo(x: Double, y: Double): Unit +Path2D[JC] def moveTo(x: Double, y: Double): Unit +Path2D[JC] def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit +Path2D[JC] def rect(x: Double, y: Double, w: Double, h: Double): Unit Pbkdf2Params[JT] val hash: HashAlgorithmIdentifier Pbkdf2Params[JT] val iterations: Double Pbkdf2Params[JT] val name: String diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index b909d6f20..8ea9629f4 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -1089,6 +1089,9 @@ CanvasRenderingContext2D[JC] def createRadialGradient(x0: Double, y0: Double, r0 CanvasRenderingContext2D[JC] def drawImage(image: HTMLElement, offsetX: Double, offsetY: Double, width: Double?, height: Double?, canvasOffsetX: Double?, canvasOffsetY: Double?, canvasImageWidth: Double?, canvasImageHeight: Double?): Unit CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit CanvasRenderingContext2D[JC] def fill(): Unit +CanvasRenderingContext2D[JC] def fill(fillRule: String): Unit +CanvasRenderingContext2D[JC] def fill(path: Path2D): Unit +CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: String): Unit CanvasRenderingContext2D[JC] def fillRect(x: Double, y: Double, w: Double, h: Double): Unit CanvasRenderingContext2D[JC] var fillStyle: js.Any CanvasRenderingContext2D[JC] def fillText(text: String, x: Double, y: Double, maxWidth: Double?): Unit @@ -1122,6 +1125,7 @@ CanvasRenderingContext2D[JC] var shadowColor: String CanvasRenderingContext2D[JC] var shadowOffsetX: Double CanvasRenderingContext2D[JC] var shadowOffsetY: Double CanvasRenderingContext2D[JC] def stroke(): Unit +CanvasRenderingContext2D[JC] def stroke(path: Path2D): Unit CanvasRenderingContext2D[JC] def strokeRect(x: Double, y: Double, w: Double, h: Double): Unit CanvasRenderingContext2D[JC] var strokeStyle: js.Any CanvasRenderingContext2D[JC] def strokeText(text: String, x: Double, y: Double, maxWidth: Double?): Unit @@ -16627,6 +16631,17 @@ ParentNode[JT] def children: HTMLCollection[Element] ParentNode[JT] def firstElementChild: Element ParentNode[JT] def lastElementChild: Element ParentNode[JT] def replaceChildren(nodes: Node | String*): Unit +Path2D[JC] def addPath(path: Path2D): Unit +Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit +Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit +Path2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit +Path2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit +Path2D[JC] def closePath(): Unit +Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit +Path2D[JC] def lineTo(x: Double, y: Double): Unit +Path2D[JC] def moveTo(x: Double, y: Double): Unit +Path2D[JC] def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit +Path2D[JC] def rect(x: Double, y: Double, w: Double, h: Double): Unit Pbkdf2Params[JT] val hash: HashAlgorithmIdentifier Pbkdf2Params[JT] val iterations: Double Pbkdf2Params[JT] val name: String diff --git a/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala b/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala index db0207e84..efd85d36c 100644 --- a/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala +++ b/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala @@ -124,6 +124,12 @@ class CanvasRenderingContext2D extends js.Object { /** Fills the subpaths with the current fill style. */ def fill(): Unit = js.native + def fill(path: Path2D): Unit = js.native + + def fill(fillRule: String): Unit = js.native + + def fill(path: Path2D, fillRule: String): Unit = js.native + /** Creates a new, blank ImageData object with the specified dimensions. All of the pixels in the new object are * transparent black. */ @@ -172,6 +178,8 @@ class CanvasRenderingContext2D extends js.Object { /** Strokes the subpaths with the current stroke style. */ def stroke(): Unit = js.native + def stroke(path: Path2D): Unit = js.native + /** Paints a rectangle which has a starting point at (x, y) and has a w width and an h height onto the canvas, using * the current stroke style. */ diff --git a/dom/src/main/scala/org/scalajs/dom/Path2D.scala b/dom/src/main/scala/org/scalajs/dom/Path2D.scala new file mode 100644 index 000000000..1fdf6af28 --- /dev/null +++ b/dom/src/main/scala/org/scalajs/dom/Path2D.scala @@ -0,0 +1,34 @@ +package org.scalajs.dom + +import scala.scalajs.js +import scala.scalajs.js.annotation.JSGlobal + +@js.native +@JSGlobal +class Path2D extends js.Object { + + def addPath(path: Path2D): Unit = js.native + + def closePath(): Unit = js.native + + def moveTo(x: Double, y: Double): Unit = js.native + + def lineTo(x: Double, y: Double): Unit = js.native + + def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit = js.native + + def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit = js.native + + def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit = js.native + + def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, + anticlockwise: Boolean): Unit = js.native + + def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit = js.native + + def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, + endAngle: Double, anticlockwise: Boolean = js.native): Unit = js.native + + def rect(x: Double, y: Double, w: Double, h: Double): Unit = js.native + +} From 4fd7dd6bfda23681e806a4899b2471c9d11394ea Mon Sep 17 00:00:00 2001 From: Christoph Bunte Date: Tue, 28 Mar 2023 19:50:30 +0200 Subject: [PATCH 05/14] more scaladocs --- .../dom/CanvasRenderingContext2D.scala | 27 +++++++++++++++++++ .../main/scala/org/scalajs/dom/Path2D.scala | 23 ++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala b/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala index efd85d36c..75d0e1e84 100644 --- a/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala +++ b/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala @@ -77,12 +77,18 @@ class CanvasRenderingContext2D extends js.Object { /** Restores the drawing style state to the last element on the 'state stack' saved by save(). */ def restore(): Unit = js.native + /** Resets the current transform to the identity matrix, and then invokes the transform() method with the same + * arguments. + */ def setTransform(m11: Double, m12: Double, m21: Double, m22: Double, dx: Double, dy: Double): Unit = js.native /** Saves the current drawing style state using a stack so you can revert any change you make to it using restore(). */ def save(): Unit = js.native + /** Adds an arc to the path which is centered at (x, y) position with radius r starting at startAngle and ending at + * endAngle going in the given direction by anticlockwise (defaulting to clockwise). + */ def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit = js.native @@ -91,27 +97,39 @@ class CanvasRenderingContext2D extends js.Object { */ def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit = js.native + /** Returns a TextMetrics object. */ def measureText(text: String): TextMetrics = js.native + /** Reports whether or not the specified point is contained in the current path. */ def isPointInPath(x: Double, y: Double, fillRule: String): Boolean = js.native /** Reports whether or not the specified point is contained in the current path. */ def isPointInPath(x: Double, y: Double): Boolean = js.native + /** Adds a quadratic Bézier curve to the current path. */ def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit = js.native + /** Paints data from the given ImageData object onto the bitmap. If a dirty rectangle is provided, only the pixels + * from that rectangle are painted. + */ def putImageData(imagedata: ImageData, dx: Double, dy: Double, dirtyX: Double = js.native, dirtyY: Double = js.native, dirtyWidth: Double = js.native, dirtyHeight: Double = js.native): Unit = js.native + /** Adds a rotation to the transformation matrix. The angle argument represents a clockwise rotation angle and is + * expressed in radians. + */ def rotate(angle: Double): Unit = js.native + /** Draws (fills) a given text at the given (x, y) position. */ def fillText(text: String, x: Double, y: Double, maxWidth: Double = js.native): Unit = js.native /** Moves the origin point of the context to (x, y). */ def translate(x: Double, y: Double): Unit = js.native + /** Adds a scaling transformation to the canvas units by x horizontally and by y vertically. */ def scale(x: Double, y: Double): Unit = js.native + /** Creates a radial gradient given by the coordinates of the two circles represented by the parameters. */ def createRadialGradient(x0: Double, y0: Double, r0: Double, x1: Double, y1: Double, r1: Double): CanvasGradient = js.native @@ -135,6 +153,9 @@ class CanvasRenderingContext2D extends js.Object { */ def createImageData(imageDataOrSw: js.Any, sh: Double = js.native): ImageData = js.native + /** Creates a pattern using the specified image. It repeats the source in the directions specified by the repetition + * argument. This method returns a CanvasPattern. + */ def createPattern(image: HTMLElement, repetition: String): CanvasPattern = js.native /** Tries to draw a straight line from the current point to the start. If the shape has already been closed or has @@ -142,6 +163,7 @@ class CanvasRenderingContext2D extends js.Object { */ def closePath(): Unit = js.native + /** Creates a path for a rectangle at position (x, y) with a size that is determined by width and height. */ def rect(x: Double, y: Double, w: Double, h: Double): Unit = js.native /** Creates a clipping path from the current sub-paths. Everything drawn after clip() is called appears inside the @@ -164,6 +186,7 @@ class CanvasRenderingContext2D extends js.Object { /** Draws a filled rectangle at (x, y) position whose size is determined by width and height. */ def fillRect(x: Double, y: Double, w: Double, h: Double): Unit = js.native + /** Adds a cubic Bézier curve to the current path. */ def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit = js.native /** Draws the specified image. This method is available in multiple formats, providing a great deal of flexibility in @@ -173,6 +196,7 @@ class CanvasRenderingContext2D extends js.Object { height: Double = js.native, canvasOffsetX: Double = js.native, canvasOffsetY: Double = js.native, canvasImageWidth: Double = js.native, canvasImageHeight: Double = js.native): Unit = js.native + /** Multiplies the current transformation matrix with the matrix described by its arguments. */ def transform(m11: Double, m12: Double, m21: Double, m22: Double, dx: Double, dy: Double): Unit = js.native /** Strokes the subpaths with the current stroke style. */ @@ -185,8 +209,10 @@ class CanvasRenderingContext2D extends js.Object { */ def strokeRect(x: Double, y: Double, w: Double, h: Double): Unit = js.native + /** Sets the current line dash pattern. */ def setLineDash(segments: js.Array[Double]): Unit = js.native + /** Draws (strokes) a given text at the given (x, y) position. */ def strokeText(text: String, x: Double, y: Double, maxWidth: Double = js.native): Unit = js.native /** Starts a new path by resetting the list of sub-paths. Call this method when you want to create a new path. */ @@ -195,6 +221,7 @@ class CanvasRenderingContext2D extends js.Object { /** Adds an arc with the given control points and radius, connected to the previous point by a straight line. */ def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit = js.native + /** Creates a linear gradient along the line given by the coordinates represented by the parameters. */ def createLinearGradient(x0: Double, y0: Double, x1: Double, y1: Double): CanvasGradient = js.native /** The ellipse() method creates an elliptical arc centered at (x, y) with the radii radiusX and radiusY. The path diff --git a/dom/src/main/scala/org/scalajs/dom/Path2D.scala b/dom/src/main/scala/org/scalajs/dom/Path2D.scala index 1fdf6af28..66d8330a9 100644 --- a/dom/src/main/scala/org/scalajs/dom/Path2D.scala +++ b/dom/src/main/scala/org/scalajs/dom/Path2D.scala @@ -7,28 +7,51 @@ import scala.scalajs.js.annotation.JSGlobal @JSGlobal class Path2D extends js.Object { + /** Adds a path to the current path. */ def addPath(path: Path2D): Unit = js.native + /** Causes the point of the pen to move back to the start of the current sub-path. It tries to draw a straight line + * from the current point to the start. If the shape has already been closed or has only one point, this function + * does nothing. + */ def closePath(): Unit = js.native + /** Moves the starting point of a new sub-path to the (x, y) coordinates. */ def moveTo(x: Double, y: Double): Unit = js.native + /** Connects the last point in the subpath to the (x, y) coordinates with a straight line. */ def lineTo(x: Double, y: Double): Unit = js.native + /** Adds a cubic Bézier curve to the path. It requires three points. The first two points are control points and the + * third one is the end point. The starting point is the last point in the current path, which can be changed using + * moveTo() before creating the Bézier curve. + */ def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit = js.native + /** Adds a quadratic Bézier curve to the current path. */ def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit = js.native + /** Adds a circular arc to the path with the given control points and radius, connected to the previous point by a + * straight line. + */ def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit = js.native + /** Adds an arc to the path which is centered at (x, y) position with radius r starting at startAngle and ending at + * endAngle going in the given direction by counterclockwise (defaulting to clockwise). + */ def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit = js.native def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit = js.native + /** Adds an elliptical arc to the path which is centered at (x, y) position with the radii radiusX and radiusY + * starting at startAngle and ending at endAngle going in the given direction by counterclockwise (defaulting to + * clockwise). + */ def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean = js.native): Unit = js.native + /** Creates a path for a rectangle at position (x, y) with a size that is determined by width and height. */ def rect(x: Double, y: Double, w: Double, h: Double): Unit = js.native } From cbab32278a1c0d96e58cb3f4b756ffe67705b481 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 28 Mar 2023 18:47:31 +0000 Subject: [PATCH 06/14] Update scalafmt-core to 3.7.3 --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 157cb9646..8f8fcffb5 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.7.2 +version = 3.7.3 runner.dialect = scala213source3 project.git = true style = Scala.js From 17abf368db22e67a6d0af2700b43a7596475b7ec Mon Sep 17 00:00:00 2001 From: Christoph Bunte Date: Wed, 29 Mar 2023 19:07:43 +0200 Subject: [PATCH 07/14] add CanvasFillRule enum --- .../org/scalajs/dom/CanvasFillRule.scala | 14 +++++++ .../org/scalajs/dom/CanvasFillRule.scala | 13 ++++++ .../dom/CanvasRenderingContext2D.scala | 41 ++++++++++++------- .../main/scala/org/scalajs/dom/Path2D.scala | 19 ++++++--- 4 files changed, 67 insertions(+), 20 deletions(-) create mode 100644 dom/src/main/scala-2/org/scalajs/dom/CanvasFillRule.scala create mode 100644 dom/src/main/scala-3/org/scalajs/dom/CanvasFillRule.scala diff --git a/dom/src/main/scala-2/org/scalajs/dom/CanvasFillRule.scala b/dom/src/main/scala-2/org/scalajs/dom/CanvasFillRule.scala new file mode 100644 index 000000000..bc3f98c58 --- /dev/null +++ b/dom/src/main/scala-2/org/scalajs/dom/CanvasFillRule.scala @@ -0,0 +1,14 @@ +package org.scalajs.dom + +import scala.scalajs.js + +@js.native +sealed trait CanvasFillRule extends js.Any + +object CanvasFillRule { + + val nonzero: CanvasFillRule = "nonzero".asInstanceOf[CanvasFillRule] + + val evenodd: CanvasFillRule = "evenodd".asInstanceOf[CanvasFillRule] + +} diff --git a/dom/src/main/scala-3/org/scalajs/dom/CanvasFillRule.scala b/dom/src/main/scala-3/org/scalajs/dom/CanvasFillRule.scala new file mode 100644 index 000000000..f72f2d9e9 --- /dev/null +++ b/dom/src/main/scala-3/org/scalajs/dom/CanvasFillRule.scala @@ -0,0 +1,13 @@ +package org.scalajs.dom + +import scala.scalajs.js + +opaque type CanvasFillRule <: String = String + +object CanvasFillRule { + + val nonzero: CanvasFillRule = "nonzero" + + val evenodd: CanvasFillRule = "evenodd" + +} diff --git a/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala b/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala index 75d0e1e84..6c379819e 100644 --- a/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala +++ b/dom/src/main/scala/org/scalajs/dom/CanvasRenderingContext2D.scala @@ -86,14 +86,14 @@ class CanvasRenderingContext2D extends js.Object { */ def save(): Unit = js.native - /** Adds an arc to the path which is centered at (x, y) position with radius r starting at startAngle and ending at - * endAngle going in the given direction by anticlockwise (defaulting to clockwise). + /** The arc() method creates a circular arc centered at (x, y) with a radius of radius. The path starts at startAngle, + * ends at endAngle, and travels in the direction given by counterclockwise (defaulting to clockwise). */ def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, - anticlockwise: Boolean): Unit = js.native + counterclockwise: Boolean): Unit = js.native - /** Adds an arc to the path which is centered at (x, y) position with radius r starting at startAngle and ending at - * endAngle going in the given direction by anticlockwise (defaulting to clockwise). + /** The arc() method creates a circular arc centered at (x, y) with a radius of radius. The path starts at startAngle, + * ends at endAngle, and travels in the direction given by counterclockwise (defaulting to clockwise). */ def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit = js.native @@ -101,10 +101,13 @@ class CanvasRenderingContext2D extends js.Object { def measureText(text: String): TextMetrics = js.native /** Reports whether or not the specified point is contained in the current path. */ - def isPointInPath(x: Double, y: Double, fillRule: String): Boolean = js.native + def isPointInPath(x: Double, y: Double, fillRule: CanvasFillRule = js.native): Boolean = js.native /** Reports whether or not the specified point is contained in the current path. */ - def isPointInPath(x: Double, y: Double): Boolean = js.native + def isPointInPath(path: Path2D, x: Double, y: Double): Boolean = js.native + + /** Reports whether or not the specified point is contained in the current path. */ + def isPointInPath(path: Path2D, x: Double, y: Double, fillRule: CanvasFillRule): Boolean = js.native /** Adds a quadratic Bézier curve to the current path. */ def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit = js.native @@ -140,13 +143,13 @@ class CanvasRenderingContext2D extends js.Object { def getLineDash(): js.Array[Double] = js.native /** Fills the subpaths with the current fill style. */ - def fill(): Unit = js.native + def fill(fillRule: CanvasFillRule = js.native): Unit = js.native + /** Fills the subpaths with the current fill style. */ def fill(path: Path2D): Unit = js.native - def fill(fillRule: String): Unit = js.native - - def fill(path: Path2D, fillRule: String): Unit = js.native + /** Fills the subpaths with the current fill style. */ + def fill(path: Path2D, fillRule: CanvasFillRule): Unit = js.native /** Creates a new, blank ImageData object with the specified dimensions. All of the pixels in the new object are * transparent black. @@ -169,7 +172,17 @@ class CanvasRenderingContext2D extends js.Object { /** Creates a clipping path from the current sub-paths. Everything drawn after clip() is called appears inside the * clipping path only. For an example, see Clipping paths in the Canvas tutorial. */ - def clip(fillRule: String = js.native): Unit = js.native + def clip(fillRule: CanvasFillRule = js.native): Unit = js.native + + /** Creates a clipping path from the current sub-paths. Everything drawn after clip() is called appears inside the + * clipping path only. For an example, see Clipping paths in the Canvas tutorial. + */ + def clip(path: Path2D): Unit = js.native + + /** Creates a clipping path from the current sub-paths. Everything drawn after clip() is called appears inside the + * clipping path only. For an example, see Clipping paths in the Canvas tutorial. + */ + def clip(path: Path2D, fillRule: CanvasFillRule): Unit = js.native /** Sets all pixels in the rectangle defined by starting point (x, y) and size (width, height) to transparent black. */ @@ -225,9 +238,9 @@ class CanvasRenderingContext2D extends js.Object { def createLinearGradient(x0: Double, y0: Double, x1: Double, y1: Double): CanvasGradient = js.native /** The ellipse() method creates an elliptical arc centered at (x, y) with the radii radiusX and radiusY. The path - * starts at startAngle and ends at endAngle, and travels in the direction given by anticlockwise (defaulting to + * starts at startAngle and ends at endAngle, and travels in the direction given by counterclockwise (defaulting to * clockwise). */ def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, - endAngle: Double, anticlockwise: Boolean = js.native): Unit = js.native + endAngle: Double, counterclockwise: Boolean = js.native): Unit = js.native } diff --git a/dom/src/main/scala/org/scalajs/dom/Path2D.scala b/dom/src/main/scala/org/scalajs/dom/Path2D.scala index 66d8330a9..7038efdb2 100644 --- a/dom/src/main/scala/org/scalajs/dom/Path2D.scala +++ b/dom/src/main/scala/org/scalajs/dom/Path2D.scala @@ -3,6 +3,10 @@ package org.scalajs.dom import scala.scalajs.js import scala.scalajs.js.annotation.JSGlobal +/** The [[Path2D]] interface of the Canvas 2D API is used to declare a path that can then be used on a + * [[CanvasRenderingContext2D]] object. The path methods of the [[CanvasRenderingContext2D]] interface are also present + * on this interface, which gives you the convenience of being able to retain and replay your path whenever desired. + */ @js.native @JSGlobal class Path2D extends js.Object { @@ -36,20 +40,23 @@ class Path2D extends js.Object { */ def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit = js.native - /** Adds an arc to the path which is centered at (x, y) position with radius r starting at startAngle and ending at - * endAngle going in the given direction by counterclockwise (defaulting to clockwise). + /** The arc() method creates a circular arc centered at (x, y) with a radius of radius. The path starts at startAngle, + * ends at endAngle, and travels in the direction given by counterclockwise (defaulting to clockwise). */ def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, - anticlockwise: Boolean): Unit = js.native + counterclockwise: Boolean): Unit = js.native + /** The arc() method creates a circular arc centered at (x, y) with a radius of radius. The path starts at startAngle, + * ends at endAngle, and travels in the direction given by counterclockwise (defaulting to clockwise). + */ def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit = js.native - /** Adds an elliptical arc to the path which is centered at (x, y) position with the radii radiusX and radiusY - * starting at startAngle and ending at endAngle going in the given direction by counterclockwise (defaulting to + /** The ellipse() method creates an elliptical arc centered at (x, y) with the radii radiusX and radiusY. The path + * starts at startAngle and ends at endAngle, and travels in the direction given by counterclockwise (defaulting to * clockwise). */ def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, - endAngle: Double, anticlockwise: Boolean = js.native): Unit = js.native + endAngle: Double, counterclockwise: Boolean = js.native): Unit = js.native /** Creates a path for a rectangle at position (x, y) with a size that is determined by width and height. */ def rect(x: Double, y: Double, w: Double, h: Double): Unit = js.native From ea4d2904194bef5064afe63372f322776c3ebbb7 Mon Sep 17 00:00:00 2001 From: Christoph Bunte Date: Wed, 29 Mar 2023 19:10:26 +0200 Subject: [PATCH 08/14] run prePR --- api-reports/2_12.txt | 25 +++++++++++++++---------- api-reports/2_13.txt | 25 +++++++++++++++---------- 2 files changed, 30 insertions(+), 20 deletions(-) diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index 8ea9629f4..ab04fbca0 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -1070,28 +1070,32 @@ CacheStorage[JT] def has(cacheName: String): js.Promise[Boolean] CacheStorage[JT] def keys(): js.Promise[js.Array[String]] CacheStorage[JT] def `match`(request: RequestInfo, options: CacheQueryOptions?): js.Promise[js.Any] CacheStorage[JT] def open(cacheName: String): js.Promise[Cache] +CanvasFillRule[JT] +CanvasFillRule[SO] val evenodd: CanvasFillRule +CanvasFillRule[SO] val nonzero: CanvasFillRule CanvasGradient[JC] def addColorStop(offset: Double, color: String): Unit CanvasPattern[JC] CanvasProxy[JT] def setContext(context: RenderingContext): Unit CanvasRenderingContext2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit -CanvasRenderingContext2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit +CanvasRenderingContext2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean): Unit CanvasRenderingContext2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit CanvasRenderingContext2D[JC] def beginPath(): Unit CanvasRenderingContext2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit CanvasRenderingContext2D[JC] var canvas: HTMLCanvasElement CanvasRenderingContext2D[JC] def clearRect(x: Double, y: Double, w: Double, h: Double): Unit -CanvasRenderingContext2D[JC] def clip(fillRule: String?): Unit +CanvasRenderingContext2D[JC] def clip(fillRule: CanvasFillRule?): Unit +CanvasRenderingContext2D[JC] def clip(path: Path2D): Unit +CanvasRenderingContext2D[JC] def clip(path: Path2D, fillRule: CanvasFillRule): Unit CanvasRenderingContext2D[JC] def closePath(): Unit CanvasRenderingContext2D[JC] def createImageData(imageDataOrSw: js.Any, sh: Double?): ImageData CanvasRenderingContext2D[JC] def createLinearGradient(x0: Double, y0: Double, x1: Double, y1: Double): CanvasGradient CanvasRenderingContext2D[JC] def createPattern(image: HTMLElement, repetition: String): CanvasPattern CanvasRenderingContext2D[JC] def createRadialGradient(x0: Double, y0: Double, r0: Double, x1: Double, y1: Double, r1: Double): CanvasGradient CanvasRenderingContext2D[JC] def drawImage(image: HTMLElement, offsetX: Double, offsetY: Double, width: Double?, height: Double?, canvasOffsetX: Double?, canvasOffsetY: Double?, canvasImageWidth: Double?, canvasImageHeight: Double?): Unit -CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit -CanvasRenderingContext2D[JC] def fill(): Unit -CanvasRenderingContext2D[JC] def fill(fillRule: String): Unit +CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean?): Unit +CanvasRenderingContext2D[JC] def fill(fillRule: CanvasFillRule?): Unit CanvasRenderingContext2D[JC] def fill(path: Path2D): Unit -CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: String): Unit +CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: CanvasFillRule): Unit CanvasRenderingContext2D[JC] def fillRect(x: Double, y: Double, w: Double, h: Double): Unit CanvasRenderingContext2D[JC] var fillStyle: js.Any CanvasRenderingContext2D[JC] def fillText(text: String, x: Double, y: Double, maxWidth: Double?): Unit @@ -1101,8 +1105,9 @@ CanvasRenderingContext2D[JC] def getLineDash(): js.Array[Double] CanvasRenderingContext2D[JC] var globalAlpha: Double CanvasRenderingContext2D[JC] var globalCompositeOperation: String CanvasRenderingContext2D[JC] var imageSmoothingEnabled: Boolean -CanvasRenderingContext2D[JC] def isPointInPath(x: Double, y: Double): Boolean -CanvasRenderingContext2D[JC] def isPointInPath(x: Double, y: Double, fillRule: String): Boolean +CanvasRenderingContext2D[JC] def isPointInPath(path: Path2D, x: Double, y: Double): Boolean +CanvasRenderingContext2D[JC] def isPointInPath(path: Path2D, x: Double, y: Double, fillRule: CanvasFillRule): Boolean +CanvasRenderingContext2D[JC] def isPointInPath(x: Double, y: Double, fillRule: CanvasFillRule?): Boolean CanvasRenderingContext2D[JC] var lineCap: String CanvasRenderingContext2D[JC] var lineDashOffset: Double CanvasRenderingContext2D[JC] var lineJoin: String @@ -16633,11 +16638,11 @@ ParentNode[JT] def lastElementChild: Element ParentNode[JT] def replaceChildren(nodes: Node | String*): Unit Path2D[JC] def addPath(path: Path2D): Unit Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit -Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit +Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean): Unit Path2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit Path2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit Path2D[JC] def closePath(): Unit -Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit +Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean?): Unit Path2D[JC] def lineTo(x: Double, y: Double): Unit Path2D[JC] def moveTo(x: Double, y: Double): Unit Path2D[JC] def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index 8ea9629f4..ab04fbca0 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -1070,28 +1070,32 @@ CacheStorage[JT] def has(cacheName: String): js.Promise[Boolean] CacheStorage[JT] def keys(): js.Promise[js.Array[String]] CacheStorage[JT] def `match`(request: RequestInfo, options: CacheQueryOptions?): js.Promise[js.Any] CacheStorage[JT] def open(cacheName: String): js.Promise[Cache] +CanvasFillRule[JT] +CanvasFillRule[SO] val evenodd: CanvasFillRule +CanvasFillRule[SO] val nonzero: CanvasFillRule CanvasGradient[JC] def addColorStop(offset: Double, color: String): Unit CanvasPattern[JC] CanvasProxy[JT] def setContext(context: RenderingContext): Unit CanvasRenderingContext2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit -CanvasRenderingContext2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit +CanvasRenderingContext2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean): Unit CanvasRenderingContext2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit CanvasRenderingContext2D[JC] def beginPath(): Unit CanvasRenderingContext2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit CanvasRenderingContext2D[JC] var canvas: HTMLCanvasElement CanvasRenderingContext2D[JC] def clearRect(x: Double, y: Double, w: Double, h: Double): Unit -CanvasRenderingContext2D[JC] def clip(fillRule: String?): Unit +CanvasRenderingContext2D[JC] def clip(fillRule: CanvasFillRule?): Unit +CanvasRenderingContext2D[JC] def clip(path: Path2D): Unit +CanvasRenderingContext2D[JC] def clip(path: Path2D, fillRule: CanvasFillRule): Unit CanvasRenderingContext2D[JC] def closePath(): Unit CanvasRenderingContext2D[JC] def createImageData(imageDataOrSw: js.Any, sh: Double?): ImageData CanvasRenderingContext2D[JC] def createLinearGradient(x0: Double, y0: Double, x1: Double, y1: Double): CanvasGradient CanvasRenderingContext2D[JC] def createPattern(image: HTMLElement, repetition: String): CanvasPattern CanvasRenderingContext2D[JC] def createRadialGradient(x0: Double, y0: Double, r0: Double, x1: Double, y1: Double, r1: Double): CanvasGradient CanvasRenderingContext2D[JC] def drawImage(image: HTMLElement, offsetX: Double, offsetY: Double, width: Double?, height: Double?, canvasOffsetX: Double?, canvasOffsetY: Double?, canvasImageWidth: Double?, canvasImageHeight: Double?): Unit -CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit -CanvasRenderingContext2D[JC] def fill(): Unit -CanvasRenderingContext2D[JC] def fill(fillRule: String): Unit +CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean?): Unit +CanvasRenderingContext2D[JC] def fill(fillRule: CanvasFillRule?): Unit CanvasRenderingContext2D[JC] def fill(path: Path2D): Unit -CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: String): Unit +CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: CanvasFillRule): Unit CanvasRenderingContext2D[JC] def fillRect(x: Double, y: Double, w: Double, h: Double): Unit CanvasRenderingContext2D[JC] var fillStyle: js.Any CanvasRenderingContext2D[JC] def fillText(text: String, x: Double, y: Double, maxWidth: Double?): Unit @@ -1101,8 +1105,9 @@ CanvasRenderingContext2D[JC] def getLineDash(): js.Array[Double] CanvasRenderingContext2D[JC] var globalAlpha: Double CanvasRenderingContext2D[JC] var globalCompositeOperation: String CanvasRenderingContext2D[JC] var imageSmoothingEnabled: Boolean -CanvasRenderingContext2D[JC] def isPointInPath(x: Double, y: Double): Boolean -CanvasRenderingContext2D[JC] def isPointInPath(x: Double, y: Double, fillRule: String): Boolean +CanvasRenderingContext2D[JC] def isPointInPath(path: Path2D, x: Double, y: Double): Boolean +CanvasRenderingContext2D[JC] def isPointInPath(path: Path2D, x: Double, y: Double, fillRule: CanvasFillRule): Boolean +CanvasRenderingContext2D[JC] def isPointInPath(x: Double, y: Double, fillRule: CanvasFillRule?): Boolean CanvasRenderingContext2D[JC] var lineCap: String CanvasRenderingContext2D[JC] var lineDashOffset: Double CanvasRenderingContext2D[JC] var lineJoin: String @@ -16633,11 +16638,11 @@ ParentNode[JT] def lastElementChild: Element ParentNode[JT] def replaceChildren(nodes: Node | String*): Unit Path2D[JC] def addPath(path: Path2D): Unit Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit -Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit +Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean): Unit Path2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit Path2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit Path2D[JC] def closePath(): Unit -Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit +Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, counterclockwise: Boolean?): Unit Path2D[JC] def lineTo(x: Double, y: Double): Unit Path2D[JC] def moveTo(x: Double, y: Double): Unit Path2D[JC] def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit From ddeab4d98e6e5b3b0b954bc84fa399233767c2fc Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Tue, 18 Apr 2023 23:16:35 +0000 Subject: [PATCH 09/14] Fix `WebSocket#onerror` --- api-reports/2_12.txt | 2 +- api-reports/2_13.txt | 2 +- dom/src/main/scala/org/scalajs/dom/WebSocket.scala | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index ab04fbca0..5033cf166 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -26693,7 +26693,7 @@ WebSocket[JC] def close(code: Int?, reason: String?): Unit WebSocket[JC] def dispatchEvent(evt: Event): Boolean WebSocket[JC] def extensions: String WebSocket[JC] var onclose: js.Function1[CloseEvent, _] -WebSocket[JC] var onerror: js.Function1[ErrorEvent, _] +WebSocket[JC] var onerror: js.Function1[Error, _] WebSocket[JC] var onmessage: js.Function1[MessageEvent, _] WebSocket[JC] var onopen: js.Function1[Event, _] WebSocket[JC] def readyState: Int diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index ab04fbca0..5033cf166 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -26693,7 +26693,7 @@ WebSocket[JC] def close(code: Int?, reason: String?): Unit WebSocket[JC] def dispatchEvent(evt: Event): Boolean WebSocket[JC] def extensions: String WebSocket[JC] var onclose: js.Function1[CloseEvent, _] -WebSocket[JC] var onerror: js.Function1[ErrorEvent, _] +WebSocket[JC] var onerror: js.Function1[Error, _] WebSocket[JC] var onmessage: js.Function1[MessageEvent, _] WebSocket[JC] var onopen: js.Function1[Event, _] WebSocket[JC] def readyState: Int diff --git a/dom/src/main/scala/org/scalajs/dom/WebSocket.scala b/dom/src/main/scala/org/scalajs/dom/WebSocket.scala index 87d8da4a5..84397e2c8 100644 --- a/dom/src/main/scala/org/scalajs/dom/WebSocket.scala +++ b/dom/src/main/scala/org/scalajs/dom/WebSocket.scala @@ -54,7 +54,7 @@ class WebSocket(var url: String = js.native, var protocol: String = js.native) e var onclose: js.Function1[CloseEvent, _] = js.native /** An event listener to be called when an error occurs. This is a simple event named "error". */ - var onerror: js.Function1[ErrorEvent, _] = js.native + var onerror: js.Function1[Error, _] = js.native /** A string indicating the type of binary data being transmitted by the connection. This should be either "blob" if * DOM Blob objects are being used or "arraybuffer" if ArrayBuffer objects are being used. From 637386a3ef233baffa2bd9e8608565c2a1afa210 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 3 May 2023 18:49:44 +0000 Subject: [PATCH 10/14] Update sbt-ci-release to 1.5.12 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 555608f9d..3ff46f291 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,7 +3,7 @@ libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "1.1.1" addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("com.lihaoyi" % "scalatex-sbt-plugin" % "0.3.11") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") From b68a34fd365e3972f00ddf0779bf7921be1a9c9c Mon Sep 17 00:00:00 2001 From: zetashift Date: Sat, 6 May 2023 16:41:21 +0200 Subject: [PATCH 11/14] Remove attributes members from Node class --- api-reports/2_12.txt | 270 ------------------ api-reports/2_13.txt | 270 ------------------ dom/src/main/scala/org/scalajs/dom/Node.scala | 14 - 3 files changed, 554 deletions(-) diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index ab04fbca0..5706c45d1 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -146,7 +146,6 @@ ApplicationCache[JT] def update(): Unit Attr[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit Attr[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Attr[JC] def appendChild(newChild: Node): Node -Attr[JC] def attributes: NamedNodeMap Attr[JC] def baseURI: String Attr[JC] def childNodes: NodeList[Node] Attr[JC] def cloneNode(deep: Boolean?): Node @@ -154,7 +153,6 @@ Attr[JC] def compareDocumentPosition(other: Node): Int Attr[JC] def contains(otherNode: Node): Boolean Attr[JC] def dispatchEvent(evt: Event): Boolean Attr[JC] def firstChild: Node -Attr[JC] def hasAttributes(): Boolean Attr[JC] def hasChildNodes(): Boolean Attr[JC] var innerText: String Attr[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -193,7 +191,6 @@ Audio[JC] def after(nodes: Node | String*): Unit Audio[JC] def append(nodes: Node | String*): Unit Audio[JC] def appendChild(newChild: Node): Node Audio[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -Audio[JC] def attributes: NamedNodeMap Audio[JC] def audioTracks: AudioTrackList Audio[JC] var autoplay: Boolean Audio[JC] def baseURI: String @@ -244,7 +241,6 @@ Audio[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Audio[JC] var gotpointercapture: js.Function1[PointerEvent, _] Audio[JC] def hasAttribute(name: String): Boolean Audio[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -Audio[JC] def hasAttributes(): Boolean Audio[JC] def hasChildNodes(): Boolean Audio[JC] var id: String Audio[JC] def initialTime: Double @@ -617,7 +613,6 @@ CDATASection[JC] def addEventListener[T <: Event](`type`: String, listener: js.F CDATASection[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit CDATASection[JC] def appendChild(newChild: Node): Node CDATASection[JC] def appendData(arg: String): Unit -CDATASection[JC] def attributes: NamedNodeMap CDATASection[JC] def baseURI: String CDATASection[JC] def childNodes: NodeList[Node] CDATASection[JC] def cloneNode(deep: Boolean?): Node @@ -627,7 +622,6 @@ CDATASection[JC] var data: String CDATASection[JC] def deleteData(offset: Int, count: Int): Unit CDATASection[JC] def dispatchEvent(evt: Event): Boolean CDATASection[JC] def firstChild: Node -CDATASection[JC] def hasAttributes(): Boolean CDATASection[JC] def hasChildNodes(): Boolean CDATASection[JC] var innerText: String CDATASection[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1170,7 +1164,6 @@ CharacterData[JC] def addEventListener[T <: Event](`type`: String, listener: js. CharacterData[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit CharacterData[JC] def appendChild(newChild: Node): Node CharacterData[JC] def appendData(arg: String): Unit -CharacterData[JC] def attributes: NamedNodeMap CharacterData[JC] def baseURI: String CharacterData[JC] def childNodes: NodeList[Node] CharacterData[JC] def cloneNode(deep: Boolean?): Node @@ -1180,7 +1173,6 @@ CharacterData[JC] var data: String CharacterData[JC] def deleteData(offset: Int, count: Int): Unit CharacterData[JC] def dispatchEvent(evt: Event): Boolean CharacterData[JC] def firstChild: Node -CharacterData[JC] def hasAttributes(): Boolean CharacterData[JC] def hasChildNodes(): Boolean CharacterData[JC] var innerText: String CharacterData[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1285,7 +1277,6 @@ Comment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Functi Comment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Comment[JC] def appendChild(newChild: Node): Node Comment[JC] def appendData(arg: String): Unit -Comment[JC] def attributes: NamedNodeMap Comment[JC] def baseURI: String Comment[JC] def childNodes: NodeList[Node] Comment[JC] def cloneNode(deep: Boolean?): Node @@ -1295,7 +1286,6 @@ Comment[JC] var data: String Comment[JC] def deleteData(offset: Int, count: Int): Unit Comment[JC] def dispatchEvent(evt: Event): Boolean Comment[JC] def firstChild: Node -Comment[JC] def hasAttributes(): Boolean Comment[JC] def hasChildNodes(): Boolean Comment[JC] var innerText: String Comment[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1718,7 +1708,6 @@ Document[JC] def addEventListener[T <: Event](`type`: String, listener: js.Funct Document[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Document[JC] def adoptNode(source: Node): Node Document[JC] def appendChild(newChild: Node): Node -Document[JC] def attributes: NamedNodeMap Document[JC] def baseURI: String Document[JC] def characterSet: String Document[JC] def childElementCount: Int @@ -1760,7 +1749,6 @@ Document[JC] def getElementsByClassName(classNames: String): HTMLCollection[Elem Document[JC] def getElementsByName(elementName: String): NodeList[Node] Document[JC] def getElementsByTagName(name: String): HTMLCollection[Element] Document[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] -Document[JC] def hasAttributes(): Boolean Document[JC] def hasChildNodes(): Boolean Document[JC] def hidden: Boolean Document[JC] def implementation: DOMImplementation @@ -1807,7 +1795,6 @@ DocumentEvent[JT] def createEvent(eventInterface: String): Event DocumentFragment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit DocumentFragment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit DocumentFragment[JC] def appendChild(newChild: Node): Node -DocumentFragment[JC] def attributes: NamedNodeMap DocumentFragment[JC] def baseURI: String DocumentFragment[JC] def childNodes: NodeList[Node] DocumentFragment[JC] def cloneNode(deep: Boolean?): Node @@ -1815,7 +1802,6 @@ DocumentFragment[JC] def compareDocumentPosition(other: Node): Int DocumentFragment[JC] def contains(otherNode: Node): Boolean DocumentFragment[JC] def dispatchEvent(evt: Event): Boolean DocumentFragment[JC] def firstChild: Node -DocumentFragment[JC] def hasAttributes(): Boolean DocumentFragment[JC] def hasChildNodes(): Boolean DocumentFragment[JC] var innerText: String DocumentFragment[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1851,7 +1837,6 @@ DocumentReadyState[SO] val loading: DocumentReadyState DocumentType[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit DocumentType[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit DocumentType[JC] def appendChild(newChild: Node): Node -DocumentType[JC] def attributes: NamedNodeMap DocumentType[JC] def baseURI: String DocumentType[JC] def childNodes: NodeList[Node] DocumentType[JC] def cloneNode(deep: Boolean?): Node @@ -1859,7 +1844,6 @@ DocumentType[JC] def compareDocumentPosition(other: Node): Int DocumentType[JC] def contains(otherNode: Node): Boolean DocumentType[JC] def dispatchEvent(evt: Event): Boolean DocumentType[JC] def firstChild: Node -DocumentType[JC] def hasAttributes(): Boolean DocumentType[JC] def hasChildNodes(): Boolean DocumentType[JC] var innerText: String DocumentType[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1985,7 +1969,6 @@ Element[JC] def after(nodes: Node | String*): Unit Element[JC] def append(nodes: Node | String*): Unit Element[JC] def appendChild(newChild: Node): Node Element[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -Element[JC] def attributes: NamedNodeMap Element[JC] def baseURI: String Element[JC] def before(nodes: Node | String*): Unit Element[JC] def childElementCount: Int @@ -2014,7 +1997,6 @@ Element[JC] def getElementsByTagName(name: String): HTMLCollection[Element] Element[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] Element[JC] def hasAttribute(name: String): Boolean Element[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -Element[JC] def hasAttributes(): Boolean Element[JC] def hasChildNodes(): Boolean Element[JC] var id: String Element[JC] var innerHTML: String @@ -2367,7 +2349,6 @@ HTMLAnchorElement[JC] def after(nodes: Node | String*): Unit HTMLAnchorElement[JC] def append(nodes: Node | String*): Unit HTMLAnchorElement[JC] def appendChild(newChild: Node): Node HTMLAnchorElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLAnchorElement[JC] def attributes: NamedNodeMap HTMLAnchorElement[JC] def baseURI: String HTMLAnchorElement[JC] def before(nodes: Node | String*): Unit HTMLAnchorElement[JC] def blur(): Unit @@ -2408,7 +2389,6 @@ HTMLAnchorElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLAnchorElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAnchorElement[JC] def hasAttribute(name: String): Boolean HTMLAnchorElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLAnchorElement[JC] def hasAttributes(): Boolean HTMLAnchorElement[JC] def hasChildNodes(): Boolean HTMLAnchorElement[JC] var hash: String HTMLAnchorElement[JC] var host: String @@ -2584,7 +2564,6 @@ HTMLAreaElement[JC] var alt: String HTMLAreaElement[JC] def append(nodes: Node | String*): Unit HTMLAreaElement[JC] def appendChild(newChild: Node): Node HTMLAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLAreaElement[JC] def attributes: NamedNodeMap HTMLAreaElement[JC] def baseURI: String HTMLAreaElement[JC] def before(nodes: Node | String*): Unit HTMLAreaElement[JC] def blur(): Unit @@ -2625,7 +2604,6 @@ HTMLAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAreaElement[JC] def hasAttribute(name: String): Boolean HTMLAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLAreaElement[JC] def hasAttributes(): Boolean HTMLAreaElement[JC] def hasChildNodes(): Boolean HTMLAreaElement[JC] var hash: String HTMLAreaElement[JC] var host: String @@ -2796,7 +2774,6 @@ HTMLAudioElement[JC] def after(nodes: Node | String*): Unit HTMLAudioElement[JC] def append(nodes: Node | String*): Unit HTMLAudioElement[JC] def appendChild(newChild: Node): Node HTMLAudioElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLAudioElement[JC] def attributes: NamedNodeMap HTMLAudioElement[JC] def audioTracks: AudioTrackList HTMLAudioElement[JC] var autoplay: Boolean HTMLAudioElement[JC] def baseURI: String @@ -2847,7 +2824,6 @@ HTMLAudioElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAudioElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAudioElement[JC] def hasAttribute(name: String): Boolean HTMLAudioElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLAudioElement[JC] def hasAttributes(): Boolean HTMLAudioElement[JC] def hasChildNodes(): Boolean HTMLAudioElement[JC] var id: String HTMLAudioElement[JC] def initialTime: Double @@ -3025,7 +3001,6 @@ HTMLBRElement[JC] def after(nodes: Node | String*): Unit HTMLBRElement[JC] def append(nodes: Node | String*): Unit HTMLBRElement[JC] def appendChild(newChild: Node): Node HTMLBRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLBRElement[JC] def attributes: NamedNodeMap HTMLBRElement[JC] def baseURI: String HTMLBRElement[JC] def before(nodes: Node | String*): Unit HTMLBRElement[JC] def blur(): Unit @@ -3065,7 +3040,6 @@ HTMLBRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLBRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBRElement[JC] def hasAttribute(name: String): Boolean HTMLBRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLBRElement[JC] def hasAttributes(): Boolean HTMLBRElement[JC] def hasChildNodes(): Boolean HTMLBRElement[JC] var id: String HTMLBRElement[JC] var innerHTML: String @@ -3226,7 +3200,6 @@ HTMLBaseElement[JC] def after(nodes: Node | String*): Unit HTMLBaseElement[JC] def append(nodes: Node | String*): Unit HTMLBaseElement[JC] def appendChild(newChild: Node): Node HTMLBaseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLBaseElement[JC] def attributes: NamedNodeMap HTMLBaseElement[JC] def baseURI: String HTMLBaseElement[JC] def before(nodes: Node | String*): Unit HTMLBaseElement[JC] def blur(): Unit @@ -3266,7 +3239,6 @@ HTMLBaseElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBaseElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBaseElement[JC] def hasAttribute(name: String): Boolean HTMLBaseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLBaseElement[JC] def hasAttributes(): Boolean HTMLBaseElement[JC] def hasChildNodes(): Boolean HTMLBaseElement[JC] var href: String HTMLBaseElement[JC] var id: String @@ -3429,7 +3401,6 @@ HTMLBodyElement[JC] def after(nodes: Node | String*): Unit HTMLBodyElement[JC] def append(nodes: Node | String*): Unit HTMLBodyElement[JC] def appendChild(newChild: Node): Node HTMLBodyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLBodyElement[JC] def attributes: NamedNodeMap HTMLBodyElement[JC] def baseURI: String HTMLBodyElement[JC] def before(nodes: Node | String*): Unit HTMLBodyElement[JC] def blur(): Unit @@ -3469,7 +3440,6 @@ HTMLBodyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBodyElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBodyElement[JC] def hasAttribute(name: String): Boolean HTMLBodyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLBodyElement[JC] def hasAttributes(): Boolean HTMLBodyElement[JC] def hasChildNodes(): Boolean HTMLBodyElement[JC] var id: String HTMLBodyElement[JC] var innerHTML: String @@ -3644,7 +3614,6 @@ HTMLButtonElement[JC] def after(nodes: Node | String*): Unit HTMLButtonElement[JC] def append(nodes: Node | String*): Unit HTMLButtonElement[JC] def appendChild(newChild: Node): Node HTMLButtonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLButtonElement[JC] def attributes: NamedNodeMap HTMLButtonElement[JC] var autofocus: Boolean HTMLButtonElement[JC] def baseURI: String HTMLButtonElement[JC] def before(nodes: Node | String*): Unit @@ -3693,7 +3662,6 @@ HTMLButtonElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLButtonElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLButtonElement[JC] def hasAttribute(name: String): Boolean HTMLButtonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLButtonElement[JC] def hasAttributes(): Boolean HTMLButtonElement[JC] def hasChildNodes(): Boolean HTMLButtonElement[JC] var id: String HTMLButtonElement[JC] var innerHTML: String @@ -3863,7 +3831,6 @@ HTMLCanvasElement[JC] def after(nodes: Node | String*): Unit HTMLCanvasElement[JC] def append(nodes: Node | String*): Unit HTMLCanvasElement[JC] def appendChild(newChild: Node): Node HTMLCanvasElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLCanvasElement[JC] def attributes: NamedNodeMap HTMLCanvasElement[JC] def baseURI: String HTMLCanvasElement[JC] def before(nodes: Node | String*): Unit HTMLCanvasElement[JC] def blur(): Unit @@ -3904,7 +3871,6 @@ HTMLCanvasElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLCanvasElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLCanvasElement[JC] def hasAttribute(name: String): Boolean HTMLCanvasElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLCanvasElement[JC] def hasAttributes(): Boolean HTMLCanvasElement[JC] def hasChildNodes(): Boolean HTMLCanvasElement[JC] var height: Int HTMLCanvasElement[JC] var id: String @@ -4072,7 +4038,6 @@ HTMLDListElement[JC] def after(nodes: Node | String*): Unit HTMLDListElement[JC] def append(nodes: Node | String*): Unit HTMLDListElement[JC] def appendChild(newChild: Node): Node HTMLDListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDListElement[JC] def attributes: NamedNodeMap HTMLDListElement[JC] def baseURI: String HTMLDListElement[JC] def before(nodes: Node | String*): Unit HTMLDListElement[JC] def blur(): Unit @@ -4112,7 +4077,6 @@ HTMLDListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLDListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDListElement[JC] def hasAttribute(name: String): Boolean HTMLDListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDListElement[JC] def hasAttributes(): Boolean HTMLDListElement[JC] def hasChildNodes(): Boolean HTMLDListElement[JC] var id: String HTMLDListElement[JC] var innerHTML: String @@ -4273,7 +4237,6 @@ HTMLDataListElement[JC] def after(nodes: Node | String*): Unit HTMLDataListElement[JC] def append(nodes: Node | String*): Unit HTMLDataListElement[JC] def appendChild(newChild: Node): Node HTMLDataListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDataListElement[JC] def attributes: NamedNodeMap HTMLDataListElement[JC] def baseURI: String HTMLDataListElement[JC] def before(nodes: Node | String*): Unit HTMLDataListElement[JC] def blur(): Unit @@ -4313,7 +4276,6 @@ HTMLDataListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLDataListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDataListElement[JC] def hasAttribute(name: String): Boolean HTMLDataListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDataListElement[JC] def hasAttributes(): Boolean HTMLDataListElement[JC] def hasChildNodes(): Boolean HTMLDataListElement[JC] var id: String HTMLDataListElement[JC] var innerHTML: String @@ -4475,7 +4437,6 @@ HTMLDialogElement[JC] def after(nodes: Node | String*): Unit HTMLDialogElement[JC] def append(nodes: Node | String*): Unit HTMLDialogElement[JC] def appendChild(newChild: Node): Node HTMLDialogElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDialogElement[JC] def attributes: NamedNodeMap HTMLDialogElement[JC] def baseURI: String HTMLDialogElement[JC] def before(nodes: Node | String*): Unit HTMLDialogElement[JC] def blur(): Unit @@ -4516,7 +4477,6 @@ HTMLDialogElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLDialogElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDialogElement[JC] def hasAttribute(name: String): Boolean HTMLDialogElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDialogElement[JC] def hasAttributes(): Boolean HTMLDialogElement[JC] def hasChildNodes(): Boolean HTMLDialogElement[JC] var id: String HTMLDialogElement[JC] var innerHTML: String @@ -4681,7 +4641,6 @@ HTMLDivElement[JC] def after(nodes: Node | String*): Unit HTMLDivElement[JC] def append(nodes: Node | String*): Unit HTMLDivElement[JC] def appendChild(newChild: Node): Node HTMLDivElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDivElement[JC] def attributes: NamedNodeMap HTMLDivElement[JC] def baseURI: String HTMLDivElement[JC] def before(nodes: Node | String*): Unit HTMLDivElement[JC] def blur(): Unit @@ -4721,7 +4680,6 @@ HTMLDivElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLDivElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDivElement[JC] def hasAttribute(name: String): Boolean HTMLDivElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDivElement[JC] def hasAttributes(): Boolean HTMLDivElement[JC] def hasChildNodes(): Boolean HTMLDivElement[JC] var id: String HTMLDivElement[JC] var innerHTML: String @@ -4882,7 +4840,6 @@ HTMLDocument[JC] def addEventListener[T <: Event](`type`: String, listener: js.F HTMLDocument[JC] def adoptNode(source: Node): Node HTMLDocument[JC] def anchors: HTMLCollection[Element] HTMLDocument[JC] def appendChild(newChild: Node): Node -HTMLDocument[JC] def attributes: NamedNodeMap HTMLDocument[JC] def baseURI: String HTMLDocument[JC] var body: HTMLElement HTMLDocument[JC] def characterSet: String @@ -4940,7 +4897,6 @@ HTMLDocument[JC] def getElementsByTagName(name: String): HTMLCollection[Element] HTMLDocument[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] HTMLDocument[JC] def getSelection(): Selection HTMLDocument[JC] var gotpointercapture: js.Function1[PointerEvent, _] -HTMLDocument[JC] def hasAttributes(): Boolean HTMLDocument[JC] def hasChildNodes(): Boolean HTMLDocument[JC] def hasFocus(): Boolean HTMLDocument[JC] def head: HTMLHeadElement @@ -5082,7 +5038,6 @@ HTMLElement[JC] def after(nodes: Node | String*): Unit HTMLElement[JC] def append(nodes: Node | String*): Unit HTMLElement[JC] def appendChild(newChild: Node): Node HTMLElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLElement[JC] def attributes: NamedNodeMap HTMLElement[JC] def baseURI: String HTMLElement[JC] def before(nodes: Node | String*): Unit HTMLElement[JC] def blur(): Unit @@ -5122,7 +5077,6 @@ HTMLElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: Stri HTMLElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLElement[JC] def hasAttribute(name: String): Boolean HTMLElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLElement[JC] def hasAttributes(): Boolean HTMLElement[JC] def hasChildNodes(): Boolean HTMLElement[JC] var id: String HTMLElement[JC] var innerHTML: String @@ -5283,7 +5237,6 @@ HTMLEmbedElement[JC] def after(nodes: Node | String*): Unit HTMLEmbedElement[JC] def append(nodes: Node | String*): Unit HTMLEmbedElement[JC] def appendChild(newChild: Node): Node HTMLEmbedElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLEmbedElement[JC] def attributes: NamedNodeMap HTMLEmbedElement[JC] def baseURI: String HTMLEmbedElement[JC] def before(nodes: Node | String*): Unit HTMLEmbedElement[JC] def blur(): Unit @@ -5324,7 +5277,6 @@ HTMLEmbedElement[JC] def getSVGDocument(): Document HTMLEmbedElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLEmbedElement[JC] def hasAttribute(name: String): Boolean HTMLEmbedElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLEmbedElement[JC] def hasAttributes(): Boolean HTMLEmbedElement[JC] def hasChildNodes(): Boolean HTMLEmbedElement[JC] var height: String HTMLEmbedElement[JC] var id: String @@ -5488,7 +5440,6 @@ HTMLFieldSetElement[JC] def after(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def append(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def appendChild(newChild: Node): Node HTMLFieldSetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLFieldSetElement[JC] def attributes: NamedNodeMap HTMLFieldSetElement[JC] def baseURI: String HTMLFieldSetElement[JC] def before(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def blur(): Unit @@ -5531,7 +5482,6 @@ HTMLFieldSetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLFieldSetElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFieldSetElement[JC] def hasAttribute(name: String): Boolean HTMLFieldSetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLFieldSetElement[JC] def hasAttributes(): Boolean HTMLFieldSetElement[JC] def hasChildNodes(): Boolean HTMLFieldSetElement[JC] var id: String HTMLFieldSetElement[JC] var innerHTML: String @@ -5704,7 +5654,6 @@ HTMLFormElement[JC] def append(nodes: Node | String*): Unit HTMLFormElement[JC] def appendChild(newChild: Node): Node HTMLFormElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLFormElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLFormElement[JC] def attributes: NamedNodeMap HTMLFormElement[JC] var autocomplete: String HTMLFormElement[JC] def baseURI: String HTMLFormElement[JC] def before(nodes: Node | String*): Unit @@ -5749,7 +5698,6 @@ HTMLFormElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLFormElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFormElement[JC] def hasAttribute(name: String): Boolean HTMLFormElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLFormElement[JC] def hasAttributes(): Boolean HTMLFormElement[JC] def hasChildNodes(): Boolean HTMLFormElement[JC] var id: String HTMLFormElement[JC] var innerHTML: String @@ -5921,7 +5869,6 @@ HTMLHRElement[JC] def after(nodes: Node | String*): Unit HTMLHRElement[JC] def append(nodes: Node | String*): Unit HTMLHRElement[JC] def appendChild(newChild: Node): Node HTMLHRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHRElement[JC] def attributes: NamedNodeMap HTMLHRElement[JC] def baseURI: String HTMLHRElement[JC] def before(nodes: Node | String*): Unit HTMLHRElement[JC] def blur(): Unit @@ -5961,7 +5908,6 @@ HTMLHRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLHRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHRElement[JC] def hasAttribute(name: String): Boolean HTMLHRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHRElement[JC] def hasAttributes(): Boolean HTMLHRElement[JC] def hasChildNodes(): Boolean HTMLHRElement[JC] var id: String HTMLHRElement[JC] var innerHTML: String @@ -6122,7 +6068,6 @@ HTMLHeadElement[JC] def after(nodes: Node | String*): Unit HTMLHeadElement[JC] def append(nodes: Node | String*): Unit HTMLHeadElement[JC] def appendChild(newChild: Node): Node HTMLHeadElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHeadElement[JC] def attributes: NamedNodeMap HTMLHeadElement[JC] def baseURI: String HTMLHeadElement[JC] def before(nodes: Node | String*): Unit HTMLHeadElement[JC] def blur(): Unit @@ -6162,7 +6107,6 @@ HTMLHeadElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHeadElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadElement[JC] def hasAttribute(name: String): Boolean HTMLHeadElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHeadElement[JC] def hasAttributes(): Boolean HTMLHeadElement[JC] def hasChildNodes(): Boolean HTMLHeadElement[JC] var id: String HTMLHeadElement[JC] var innerHTML: String @@ -6323,7 +6267,6 @@ HTMLHeadingElement[JC] def after(nodes: Node | String*): Unit HTMLHeadingElement[JC] def append(nodes: Node | String*): Unit HTMLHeadingElement[JC] def appendChild(newChild: Node): Node HTMLHeadingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHeadingElement[JC] def attributes: NamedNodeMap HTMLHeadingElement[JC] def baseURI: String HTMLHeadingElement[JC] def before(nodes: Node | String*): Unit HTMLHeadingElement[JC] def blur(): Unit @@ -6363,7 +6306,6 @@ HTMLHeadingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLHeadingElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadingElement[JC] def hasAttribute(name: String): Boolean HTMLHeadingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHeadingElement[JC] def hasAttributes(): Boolean HTMLHeadingElement[JC] def hasChildNodes(): Boolean HTMLHeadingElement[JC] var id: String HTMLHeadingElement[JC] var innerHTML: String @@ -6524,7 +6466,6 @@ HTMLHtmlElement[JC] def after(nodes: Node | String*): Unit HTMLHtmlElement[JC] def append(nodes: Node | String*): Unit HTMLHtmlElement[JC] def appendChild(newChild: Node): Node HTMLHtmlElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHtmlElement[JC] def attributes: NamedNodeMap HTMLHtmlElement[JC] def baseURI: String HTMLHtmlElement[JC] def before(nodes: Node | String*): Unit HTMLHtmlElement[JC] def blur(): Unit @@ -6564,7 +6505,6 @@ HTMLHtmlElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHtmlElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHtmlElement[JC] def hasAttribute(name: String): Boolean HTMLHtmlElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHtmlElement[JC] def hasAttributes(): Boolean HTMLHtmlElement[JC] def hasChildNodes(): Boolean HTMLHtmlElement[JC] var id: String HTMLHtmlElement[JC] var innerHTML: String @@ -6725,7 +6665,6 @@ HTMLIFrameElement[JC] def after(nodes: Node | String*): Unit HTMLIFrameElement[JC] def append(nodes: Node | String*): Unit HTMLIFrameElement[JC] def appendChild(newChild: Node): Node HTMLIFrameElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLIFrameElement[JC] def attributes: NamedNodeMap HTMLIFrameElement[JC] def baseURI: String HTMLIFrameElement[JC] def before(nodes: Node | String*): Unit HTMLIFrameElement[JC] def blur(): Unit @@ -6769,7 +6708,6 @@ HTMLIFrameElement[JC] def getSVGDocument(): Document HTMLIFrameElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLIFrameElement[JC] def hasAttribute(name: String): Boolean HTMLIFrameElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLIFrameElement[JC] def hasAttributes(): Boolean HTMLIFrameElement[JC] def hasChildNodes(): Boolean HTMLIFrameElement[JC] var height: String HTMLIFrameElement[JC] var id: String @@ -6938,7 +6876,6 @@ HTMLImageElement[JC] var alt: String HTMLImageElement[JC] def append(nodes: Node | String*): Unit HTMLImageElement[JC] def appendChild(newChild: Node): Node HTMLImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLImageElement[JC] def attributes: NamedNodeMap HTMLImageElement[JC] def baseURI: String HTMLImageElement[JC] def before(nodes: Node | String*): Unit HTMLImageElement[JC] def blur(): Unit @@ -6980,7 +6917,6 @@ HTMLImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLImageElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLImageElement[JC] def hasAttribute(name: String): Boolean HTMLImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLImageElement[JC] def hasAttributes(): Boolean HTMLImageElement[JC] def hasChildNodes(): Boolean HTMLImageElement[JC] var height: Int HTMLImageElement[JC] var href: String @@ -7157,7 +7093,6 @@ HTMLInputElement[JC] var alt: String HTMLInputElement[JC] def append(nodes: Node | String*): Unit HTMLInputElement[JC] def appendChild(newChild: Node): Node HTMLInputElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLInputElement[JC] def attributes: NamedNodeMap HTMLInputElement[JC] var autocomplete: String HTMLInputElement[JC] var autofocus: Boolean HTMLInputElement[JC] def baseURI: String @@ -7211,7 +7146,6 @@ HTMLInputElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLInputElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLInputElement[JC] def hasAttribute(name: String): Boolean HTMLInputElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLInputElement[JC] def hasAttributes(): Boolean HTMLInputElement[JC] def hasChildNodes(): Boolean HTMLInputElement[JC] var height: String HTMLInputElement[JC] var id: String @@ -7403,7 +7337,6 @@ HTMLLIElement[JC] def after(nodes: Node | String*): Unit HTMLLIElement[JC] def append(nodes: Node | String*): Unit HTMLLIElement[JC] def appendChild(newChild: Node): Node HTMLLIElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLIElement[JC] def attributes: NamedNodeMap HTMLLIElement[JC] def baseURI: String HTMLLIElement[JC] def before(nodes: Node | String*): Unit HTMLLIElement[JC] def blur(): Unit @@ -7443,7 +7376,6 @@ HTMLLIElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLLIElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLIElement[JC] def hasAttribute(name: String): Boolean HTMLLIElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLIElement[JC] def hasAttributes(): Boolean HTMLLIElement[JC] def hasChildNodes(): Boolean HTMLLIElement[JC] var id: String HTMLLIElement[JC] var innerHTML: String @@ -7605,7 +7537,6 @@ HTMLLabelElement[JC] def after(nodes: Node | String*): Unit HTMLLabelElement[JC] def append(nodes: Node | String*): Unit HTMLLabelElement[JC] def appendChild(newChild: Node): Node HTMLLabelElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLabelElement[JC] def attributes: NamedNodeMap HTMLLabelElement[JC] def baseURI: String HTMLLabelElement[JC] def before(nodes: Node | String*): Unit HTMLLabelElement[JC] def blur(): Unit @@ -7646,7 +7577,6 @@ HTMLLabelElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLabelElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLabelElement[JC] def hasAttribute(name: String): Boolean HTMLLabelElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLabelElement[JC] def hasAttributes(): Boolean HTMLLabelElement[JC] def hasChildNodes(): Boolean HTMLLabelElement[JC] var htmlFor: String HTMLLabelElement[JC] var id: String @@ -7809,7 +7739,6 @@ HTMLLegendElement[JC] var align: String HTMLLegendElement[JC] def append(nodes: Node | String*): Unit HTMLLegendElement[JC] def appendChild(newChild: Node): Node HTMLLegendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLegendElement[JC] def attributes: NamedNodeMap HTMLLegendElement[JC] def baseURI: String HTMLLegendElement[JC] def before(nodes: Node | String*): Unit HTMLLegendElement[JC] def blur(): Unit @@ -7850,7 +7779,6 @@ HTMLLegendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLLegendElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLegendElement[JC] def hasAttribute(name: String): Boolean HTMLLegendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLegendElement[JC] def hasAttributes(): Boolean HTMLLegendElement[JC] def hasChildNodes(): Boolean HTMLLegendElement[JC] var id: String HTMLLegendElement[JC] var innerHTML: String @@ -8011,7 +7939,6 @@ HTMLLinkElement[JC] def after(nodes: Node | String*): Unit HTMLLinkElement[JC] def append(nodes: Node | String*): Unit HTMLLinkElement[JC] def appendChild(newChild: Node): Node HTMLLinkElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLinkElement[JC] def attributes: NamedNodeMap HTMLLinkElement[JC] def baseURI: String HTMLLinkElement[JC] def before(nodes: Node | String*): Unit HTMLLinkElement[JC] def blur(): Unit @@ -8051,7 +7978,6 @@ HTMLLinkElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLinkElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLinkElement[JC] def hasAttribute(name: String): Boolean HTMLLinkElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLinkElement[JC] def hasAttributes(): Boolean HTMLLinkElement[JC] def hasChildNodes(): Boolean HTMLLinkElement[JC] var href: String HTMLLinkElement[JC] var hreflang: String @@ -8220,7 +8146,6 @@ HTMLMapElement[JC] def after(nodes: Node | String*): Unit HTMLMapElement[JC] def append(nodes: Node | String*): Unit HTMLMapElement[JC] def appendChild(newChild: Node): Node HTMLMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMapElement[JC] def attributes: NamedNodeMap HTMLMapElement[JC] def baseURI: String HTMLMapElement[JC] def before(nodes: Node | String*): Unit HTMLMapElement[JC] def blur(): Unit @@ -8260,7 +8185,6 @@ HTMLMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLMapElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMapElement[JC] def hasAttribute(name: String): Boolean HTMLMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMapElement[JC] def hasAttributes(): Boolean HTMLMapElement[JC] def hasChildNodes(): Boolean HTMLMapElement[JC] var id: String HTMLMapElement[JC] var innerHTML: String @@ -8422,7 +8346,6 @@ HTMLMediaElement[JC] def after(nodes: Node | String*): Unit HTMLMediaElement[JC] def append(nodes: Node | String*): Unit HTMLMediaElement[JC] def appendChild(newChild: Node): Node HTMLMediaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMediaElement[JC] def attributes: NamedNodeMap HTMLMediaElement[JC] def audioTracks: AudioTrackList HTMLMediaElement[JC] var autoplay: Boolean HTMLMediaElement[JC] def baseURI: String @@ -8473,7 +8396,6 @@ HTMLMediaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMediaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMediaElement[JC] def hasAttribute(name: String): Boolean HTMLMediaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMediaElement[JC] def hasAttributes(): Boolean HTMLMediaElement[JC] def hasChildNodes(): Boolean HTMLMediaElement[JC] var id: String HTMLMediaElement[JC] def initialTime: Double @@ -8660,7 +8582,6 @@ HTMLMenuElement[JC] def after(nodes: Node | String*): Unit HTMLMenuElement[JC] def append(nodes: Node | String*): Unit HTMLMenuElement[JC] def appendChild(newChild: Node): Node HTMLMenuElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMenuElement[JC] def attributes: NamedNodeMap HTMLMenuElement[JC] def baseURI: String HTMLMenuElement[JC] def before(nodes: Node | String*): Unit HTMLMenuElement[JC] def blur(): Unit @@ -8700,7 +8621,6 @@ HTMLMenuElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMenuElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMenuElement[JC] def hasAttribute(name: String): Boolean HTMLMenuElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMenuElement[JC] def hasAttributes(): Boolean HTMLMenuElement[JC] def hasChildNodes(): Boolean HTMLMenuElement[JC] var id: String HTMLMenuElement[JC] var innerHTML: String @@ -8862,7 +8782,6 @@ HTMLMetaElement[JC] def after(nodes: Node | String*): Unit HTMLMetaElement[JC] def append(nodes: Node | String*): Unit HTMLMetaElement[JC] def appendChild(newChild: Node): Node HTMLMetaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMetaElement[JC] def attributes: NamedNodeMap HTMLMetaElement[JC] def baseURI: String HTMLMetaElement[JC] def before(nodes: Node | String*): Unit HTMLMetaElement[JC] def blur(): Unit @@ -8904,7 +8823,6 @@ HTMLMetaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMetaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMetaElement[JC] def hasAttribute(name: String): Boolean HTMLMetaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMetaElement[JC] def hasAttributes(): Boolean HTMLMetaElement[JC] def hasChildNodes(): Boolean HTMLMetaElement[JC] var httpEquiv: String HTMLMetaElement[JC] var id: String @@ -9068,7 +8986,6 @@ HTMLModElement[JC] def after(nodes: Node | String*): Unit HTMLModElement[JC] def append(nodes: Node | String*): Unit HTMLModElement[JC] def appendChild(newChild: Node): Node HTMLModElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLModElement[JC] def attributes: NamedNodeMap HTMLModElement[JC] def baseURI: String HTMLModElement[JC] def before(nodes: Node | String*): Unit HTMLModElement[JC] def blur(): Unit @@ -9110,7 +9027,6 @@ HTMLModElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLModElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLModElement[JC] def hasAttribute(name: String): Boolean HTMLModElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLModElement[JC] def hasAttributes(): Boolean HTMLModElement[JC] def hasChildNodes(): Boolean HTMLModElement[JC] var id: String HTMLModElement[JC] var innerHTML: String @@ -9271,7 +9187,6 @@ HTMLOListElement[JC] def after(nodes: Node | String*): Unit HTMLOListElement[JC] def append(nodes: Node | String*): Unit HTMLOListElement[JC] def appendChild(newChild: Node): Node HTMLOListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLOListElement[JC] def attributes: NamedNodeMap HTMLOListElement[JC] def baseURI: String HTMLOListElement[JC] def before(nodes: Node | String*): Unit HTMLOListElement[JC] def blur(): Unit @@ -9311,7 +9226,6 @@ HTMLOListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLOListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOListElement[JC] def hasAttribute(name: String): Boolean HTMLOListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLOListElement[JC] def hasAttributes(): Boolean HTMLOListElement[JC] def hasChildNodes(): Boolean HTMLOListElement[JC] var id: String HTMLOListElement[JC] var innerHTML: String @@ -9476,7 +9390,6 @@ HTMLObjectElement[JC] var altHtml: String HTMLObjectElement[JC] def append(nodes: Node | String*): Unit HTMLObjectElement[JC] def appendChild(newChild: Node): Node HTMLObjectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLObjectElement[JC] def attributes: NamedNodeMap HTMLObjectElement[JC] def baseURI: String HTMLObjectElement[JC] def before(nodes: Node | String*): Unit HTMLObjectElement[JC] def blur(): Unit @@ -9522,7 +9435,6 @@ HTMLObjectElement[JC] def getSVGDocument(): Document HTMLObjectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLObjectElement[JC] def hasAttribute(name: String): Boolean HTMLObjectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLObjectElement[JC] def hasAttributes(): Boolean HTMLObjectElement[JC] def hasChildNodes(): Boolean HTMLObjectElement[JC] var height: String HTMLObjectElement[JC] var id: String @@ -9694,7 +9606,6 @@ HTMLOptGroupElement[JC] def after(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def append(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def appendChild(newChild: Node): Node HTMLOptGroupElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLOptGroupElement[JC] def attributes: NamedNodeMap HTMLOptGroupElement[JC] def baseURI: String HTMLOptGroupElement[JC] def before(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def blur(): Unit @@ -9735,7 +9646,6 @@ HTMLOptGroupElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLOptGroupElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptGroupElement[JC] def hasAttribute(name: String): Boolean HTMLOptGroupElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLOptGroupElement[JC] def hasAttributes(): Boolean HTMLOptGroupElement[JC] def hasChildNodes(): Boolean HTMLOptGroupElement[JC] var id: String HTMLOptGroupElement[JC] var innerHTML: String @@ -9897,7 +9807,6 @@ HTMLOptionElement[JC] def after(nodes: Node | String*): Unit HTMLOptionElement[JC] def append(nodes: Node | String*): Unit HTMLOptionElement[JC] def appendChild(newChild: Node): Node HTMLOptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLOptionElement[JC] def attributes: NamedNodeMap HTMLOptionElement[JC] def baseURI: String HTMLOptionElement[JC] def before(nodes: Node | String*): Unit HTMLOptionElement[JC] def blur(): Unit @@ -9941,7 +9850,6 @@ HTMLOptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLOptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptionElement[JC] def hasAttribute(name: String): Boolean HTMLOptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLOptionElement[JC] def hasAttributes(): Boolean HTMLOptionElement[JC] def hasChildNodes(): Boolean HTMLOptionElement[JC] var id: String HTMLOptionElement[JC] def index: Int @@ -10111,7 +10019,6 @@ HTMLParagraphElement[JC] def after(nodes: Node | String*): Unit HTMLParagraphElement[JC] def append(nodes: Node | String*): Unit HTMLParagraphElement[JC] def appendChild(newChild: Node): Node HTMLParagraphElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLParagraphElement[JC] def attributes: NamedNodeMap HTMLParagraphElement[JC] def baseURI: String HTMLParagraphElement[JC] def before(nodes: Node | String*): Unit HTMLParagraphElement[JC] def blur(): Unit @@ -10151,7 +10058,6 @@ HTMLParagraphElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLParagraphElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParagraphElement[JC] def hasAttribute(name: String): Boolean HTMLParagraphElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLParagraphElement[JC] def hasAttributes(): Boolean HTMLParagraphElement[JC] def hasChildNodes(): Boolean HTMLParagraphElement[JC] var id: String HTMLParagraphElement[JC] var innerHTML: String @@ -10312,7 +10218,6 @@ HTMLParamElement[JC] def after(nodes: Node | String*): Unit HTMLParamElement[JC] def append(nodes: Node | String*): Unit HTMLParamElement[JC] def appendChild(newChild: Node): Node HTMLParamElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLParamElement[JC] def attributes: NamedNodeMap HTMLParamElement[JC] def baseURI: String HTMLParamElement[JC] def before(nodes: Node | String*): Unit HTMLParamElement[JC] def blur(): Unit @@ -10352,7 +10257,6 @@ HTMLParamElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLParamElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParamElement[JC] def hasAttribute(name: String): Boolean HTMLParamElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLParamElement[JC] def hasAttributes(): Boolean HTMLParamElement[JC] def hasChildNodes(): Boolean HTMLParamElement[JC] var id: String HTMLParamElement[JC] var innerHTML: String @@ -10515,7 +10419,6 @@ HTMLPreElement[JC] def after(nodes: Node | String*): Unit HTMLPreElement[JC] def append(nodes: Node | String*): Unit HTMLPreElement[JC] def appendChild(newChild: Node): Node HTMLPreElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLPreElement[JC] def attributes: NamedNodeMap HTMLPreElement[JC] def baseURI: String HTMLPreElement[JC] def before(nodes: Node | String*): Unit HTMLPreElement[JC] def blur(): Unit @@ -10555,7 +10458,6 @@ HTMLPreElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLPreElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLPreElement[JC] def hasAttribute(name: String): Boolean HTMLPreElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLPreElement[JC] def hasAttributes(): Boolean HTMLPreElement[JC] def hasChildNodes(): Boolean HTMLPreElement[JC] var id: String HTMLPreElement[JC] var innerHTML: String @@ -10716,7 +10618,6 @@ HTMLProgressElement[JC] def after(nodes: Node | String*): Unit HTMLProgressElement[JC] def append(nodes: Node | String*): Unit HTMLProgressElement[JC] def appendChild(newChild: Node): Node HTMLProgressElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLProgressElement[JC] def attributes: NamedNodeMap HTMLProgressElement[JC] def baseURI: String HTMLProgressElement[JC] def before(nodes: Node | String*): Unit HTMLProgressElement[JC] def blur(): Unit @@ -10757,7 +10658,6 @@ HTMLProgressElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLProgressElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLProgressElement[JC] def hasAttribute(name: String): Boolean HTMLProgressElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLProgressElement[JC] def hasAttributes(): Boolean HTMLProgressElement[JC] def hasChildNodes(): Boolean HTMLProgressElement[JC] var id: String HTMLProgressElement[JC] var innerHTML: String @@ -10921,7 +10821,6 @@ HTMLQuoteElement[JC] def after(nodes: Node | String*): Unit HTMLQuoteElement[JC] def append(nodes: Node | String*): Unit HTMLQuoteElement[JC] def appendChild(newChild: Node): Node HTMLQuoteElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLQuoteElement[JC] def attributes: NamedNodeMap HTMLQuoteElement[JC] def baseURI: String HTMLQuoteElement[JC] def before(nodes: Node | String*): Unit HTMLQuoteElement[JC] def blur(): Unit @@ -10963,7 +10862,6 @@ HTMLQuoteElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLQuoteElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLQuoteElement[JC] def hasAttribute(name: String): Boolean HTMLQuoteElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLQuoteElement[JC] def hasAttributes(): Boolean HTMLQuoteElement[JC] def hasChildNodes(): Boolean HTMLQuoteElement[JC] var id: String HTMLQuoteElement[JC] var innerHTML: String @@ -11125,7 +11023,6 @@ HTMLScriptElement[JC] def append(nodes: Node | String*): Unit HTMLScriptElement[JC] def appendChild(newChild: Node): Node HTMLScriptElement[JC] var async: Boolean HTMLScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLScriptElement[JC] def attributes: NamedNodeMap HTMLScriptElement[JC] def baseURI: String HTMLScriptElement[JC] def before(nodes: Node | String*): Unit HTMLScriptElement[JC] def blur(): Unit @@ -11168,7 +11065,6 @@ HTMLScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLScriptElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLScriptElement[JC] def hasAttribute(name: String): Boolean HTMLScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLScriptElement[JC] def hasAttributes(): Boolean HTMLScriptElement[JC] def hasChildNodes(): Boolean HTMLScriptElement[JC] var id: String HTMLScriptElement[JC] var innerHTML: String @@ -11335,7 +11231,6 @@ HTMLSelectElement[JC] def append(nodes: Node | String*): Unit HTMLSelectElement[JC] def appendChild(newChild: Node): Node HTMLSelectElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLSelectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLSelectElement[JC] def attributes: NamedNodeMap HTMLSelectElement[JC] var autofocus: Boolean HTMLSelectElement[JC] def baseURI: String HTMLSelectElement[JC] def before(nodes: Node | String*): Unit @@ -11379,7 +11274,6 @@ HTMLSelectElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSelectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSelectElement[JC] def hasAttribute(name: String): Boolean HTMLSelectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLSelectElement[JC] def hasAttributes(): Boolean HTMLSelectElement[JC] def hasChildNodes(): Boolean HTMLSelectElement[JC] var id: String HTMLSelectElement[JC] var innerHTML: String @@ -11558,7 +11452,6 @@ HTMLSourceElement[JC] def after(nodes: Node | String*): Unit HTMLSourceElement[JC] def append(nodes: Node | String*): Unit HTMLSourceElement[JC] def appendChild(newChild: Node): Node HTMLSourceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLSourceElement[JC] def attributes: NamedNodeMap HTMLSourceElement[JC] def baseURI: String HTMLSourceElement[JC] def before(nodes: Node | String*): Unit HTMLSourceElement[JC] def blur(): Unit @@ -11598,7 +11491,6 @@ HTMLSourceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSourceElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSourceElement[JC] def hasAttribute(name: String): Boolean HTMLSourceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLSourceElement[JC] def hasAttributes(): Boolean HTMLSourceElement[JC] def hasChildNodes(): Boolean HTMLSourceElement[JC] var id: String HTMLSourceElement[JC] var innerHTML: String @@ -11762,7 +11654,6 @@ HTMLSpanElement[JC] def after(nodes: Node | String*): Unit HTMLSpanElement[JC] def append(nodes: Node | String*): Unit HTMLSpanElement[JC] def appendChild(newChild: Node): Node HTMLSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLSpanElement[JC] def attributes: NamedNodeMap HTMLSpanElement[JC] def baseURI: String HTMLSpanElement[JC] def before(nodes: Node | String*): Unit HTMLSpanElement[JC] def blur(): Unit @@ -11802,7 +11693,6 @@ HTMLSpanElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLSpanElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSpanElement[JC] def hasAttribute(name: String): Boolean HTMLSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLSpanElement[JC] def hasAttributes(): Boolean HTMLSpanElement[JC] def hasChildNodes(): Boolean HTMLSpanElement[JC] var id: String HTMLSpanElement[JC] var innerHTML: String @@ -11963,7 +11853,6 @@ HTMLStyleElement[JC] def after(nodes: Node | String*): Unit HTMLStyleElement[JC] def append(nodes: Node | String*): Unit HTMLStyleElement[JC] def appendChild(newChild: Node): Node HTMLStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLStyleElement[JC] def attributes: NamedNodeMap HTMLStyleElement[JC] def baseURI: String HTMLStyleElement[JC] def before(nodes: Node | String*): Unit HTMLStyleElement[JC] def blur(): Unit @@ -12003,7 +11892,6 @@ HTMLStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLStyleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLStyleElement[JC] def hasAttribute(name: String): Boolean HTMLStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLStyleElement[JC] def hasAttributes(): Boolean HTMLStyleElement[JC] def hasChildNodes(): Boolean HTMLStyleElement[JC] var id: String HTMLStyleElement[JC] var innerHTML: String @@ -12168,7 +12056,6 @@ HTMLTableCaptionElement[JC] def after(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def append(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def appendChild(newChild: Node): Node HTMLTableCaptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableCaptionElement[JC] def attributes: NamedNodeMap HTMLTableCaptionElement[JC] def baseURI: String HTMLTableCaptionElement[JC] def before(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def blur(): Unit @@ -12208,7 +12095,6 @@ HTMLTableCaptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableCaptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCaptionElement[JC] def hasAttribute(name: String): Boolean HTMLTableCaptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableCaptionElement[JC] def hasAttributes(): Boolean HTMLTableCaptionElement[JC] def hasChildNodes(): Boolean HTMLTableCaptionElement[JC] var id: String HTMLTableCaptionElement[JC] var innerHTML: String @@ -12369,7 +12255,6 @@ HTMLTableCellElement[JC] def after(nodes: Node | String*): Unit HTMLTableCellElement[JC] def append(nodes: Node | String*): Unit HTMLTableCellElement[JC] def appendChild(newChild: Node): Node HTMLTableCellElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableCellElement[JC] def attributes: NamedNodeMap HTMLTableCellElement[JC] def baseURI: String HTMLTableCellElement[JC] def before(nodes: Node | String*): Unit HTMLTableCellElement[JC] def blur(): Unit @@ -12411,7 +12296,6 @@ HTMLTableCellElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLTableCellElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCellElement[JC] def hasAttribute(name: String): Boolean HTMLTableCellElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableCellElement[JC] def hasAttributes(): Boolean HTMLTableCellElement[JC] def hasChildNodes(): Boolean HTMLTableCellElement[JC] def headers: String HTMLTableCellElement[JC] var id: String @@ -12574,7 +12458,6 @@ HTMLTableColElement[JC] def after(nodes: Node | String*): Unit HTMLTableColElement[JC] def append(nodes: Node | String*): Unit HTMLTableColElement[JC] def appendChild(newChild: Node): Node HTMLTableColElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableColElement[JC] def attributes: NamedNodeMap HTMLTableColElement[JC] def baseURI: String HTMLTableColElement[JC] def before(nodes: Node | String*): Unit HTMLTableColElement[JC] def blur(): Unit @@ -12614,7 +12497,6 @@ HTMLTableColElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableColElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableColElement[JC] def hasAttribute(name: String): Boolean HTMLTableColElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableColElement[JC] def hasAttributes(): Boolean HTMLTableColElement[JC] def hasChildNodes(): Boolean HTMLTableColElement[JC] var id: String HTMLTableColElement[JC] var innerHTML: String @@ -12776,7 +12658,6 @@ HTMLTableElement[JC] def after(nodes: Node | String*): Unit HTMLTableElement[JC] def append(nodes: Node | String*): Unit HTMLTableElement[JC] def appendChild(newChild: Node): Node HTMLTableElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableElement[JC] def attributes: NamedNodeMap HTMLTableElement[JC] def baseURI: String HTMLTableElement[JC] def before(nodes: Node | String*): Unit HTMLTableElement[JC] def blur(): Unit @@ -12825,7 +12706,6 @@ HTMLTableElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTableElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableElement[JC] def hasAttribute(name: String): Boolean HTMLTableElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableElement[JC] def hasAttributes(): Boolean HTMLTableElement[JC] def hasChildNodes(): Boolean HTMLTableElement[JC] var id: String HTMLTableElement[JC] var innerHTML: String @@ -12992,7 +12872,6 @@ HTMLTableRowElement[JC] def after(nodes: Node | String*): Unit HTMLTableRowElement[JC] def append(nodes: Node | String*): Unit HTMLTableRowElement[JC] def appendChild(newChild: Node): Node HTMLTableRowElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableRowElement[JC] def attributes: NamedNodeMap HTMLTableRowElement[JC] def baseURI: String HTMLTableRowElement[JC] def before(nodes: Node | String*): Unit HTMLTableRowElement[JC] def blur(): Unit @@ -13037,7 +12916,6 @@ HTMLTableRowElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableRowElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableRowElement[JC] def hasAttribute(name: String): Boolean HTMLTableRowElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableRowElement[JC] def hasAttributes(): Boolean HTMLTableRowElement[JC] def hasChildNodes(): Boolean HTMLTableRowElement[JC] var height: js.Any HTMLTableRowElement[JC] var id: String @@ -13202,7 +13080,6 @@ HTMLTableSectionElement[JC] def after(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def append(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def appendChild(newChild: Node): Node HTMLTableSectionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableSectionElement[JC] def attributes: NamedNodeMap HTMLTableSectionElement[JC] def baseURI: String HTMLTableSectionElement[JC] def before(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def blur(): Unit @@ -13243,7 +13120,6 @@ HTMLTableSectionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableSectionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableSectionElement[JC] def hasAttribute(name: String): Boolean HTMLTableSectionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableSectionElement[JC] def hasAttributes(): Boolean HTMLTableSectionElement[JC] def hasChildNodes(): Boolean HTMLTableSectionElement[JC] var id: String HTMLTableSectionElement[JC] var innerHTML: String @@ -13407,7 +13283,6 @@ HTMLTemplateElement[JC] def after(nodes: Node | String*): Unit HTMLTemplateElement[JC] def append(nodes: Node | String*): Unit HTMLTemplateElement[JC] def appendChild(newChild: Node): Node HTMLTemplateElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTemplateElement[JC] def attributes: NamedNodeMap HTMLTemplateElement[JC] def baseURI: String HTMLTemplateElement[JC] def before(nodes: Node | String*): Unit HTMLTemplateElement[JC] def blur(): Unit @@ -13448,7 +13323,6 @@ HTMLTemplateElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTemplateElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTemplateElement[JC] def hasAttribute(name: String): Boolean HTMLTemplateElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTemplateElement[JC] def hasAttributes(): Boolean HTMLTemplateElement[JC] def hasChildNodes(): Boolean HTMLTemplateElement[JC] var id: String HTMLTemplateElement[JC] var innerHTML: String @@ -13609,7 +13483,6 @@ HTMLTextAreaElement[JC] def after(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def append(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def appendChild(newChild: Node): Node HTMLTextAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTextAreaElement[JC] def attributes: NamedNodeMap HTMLTextAreaElement[JC] var autofocus: Boolean HTMLTextAreaElement[JC] def baseURI: String HTMLTextAreaElement[JC] def before(nodes: Node | String*): Unit @@ -13655,7 +13528,6 @@ HTMLTextAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTextAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTextAreaElement[JC] def hasAttribute(name: String): Boolean HTMLTextAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTextAreaElement[JC] def hasAttributes(): Boolean HTMLTextAreaElement[JC] def hasChildNodes(): Boolean HTMLTextAreaElement[JC] var id: String HTMLTextAreaElement[JC] var innerHTML: String @@ -13835,7 +13707,6 @@ HTMLTitleElement[JC] def after(nodes: Node | String*): Unit HTMLTitleElement[JC] def append(nodes: Node | String*): Unit HTMLTitleElement[JC] def appendChild(newChild: Node): Node HTMLTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTitleElement[JC] def attributes: NamedNodeMap HTMLTitleElement[JC] def baseURI: String HTMLTitleElement[JC] def before(nodes: Node | String*): Unit HTMLTitleElement[JC] def blur(): Unit @@ -13875,7 +13746,6 @@ HTMLTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTitleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTitleElement[JC] def hasAttribute(name: String): Boolean HTMLTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTitleElement[JC] def hasAttributes(): Boolean HTMLTitleElement[JC] def hasChildNodes(): Boolean HTMLTitleElement[JC] var id: String HTMLTitleElement[JC] var innerHTML: String @@ -14037,7 +13907,6 @@ HTMLTrackElement[JC] def after(nodes: Node | String*): Unit HTMLTrackElement[JC] def append(nodes: Node | String*): Unit HTMLTrackElement[JC] def appendChild(newChild: Node): Node HTMLTrackElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTrackElement[JC] def attributes: NamedNodeMap HTMLTrackElement[JC] def baseURI: String HTMLTrackElement[JC] def before(nodes: Node | String*): Unit HTMLTrackElement[JC] def blur(): Unit @@ -14077,7 +13946,6 @@ HTMLTrackElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTrackElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTrackElement[JC] def hasAttribute(name: String): Boolean HTMLTrackElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTrackElement[JC] def hasAttributes(): Boolean HTMLTrackElement[JC] def hasChildNodes(): Boolean HTMLTrackElement[JC] var id: String HTMLTrackElement[JC] var innerHTML: String @@ -14243,7 +14111,6 @@ HTMLUListElement[JC] def after(nodes: Node | String*): Unit HTMLUListElement[JC] def append(nodes: Node | String*): Unit HTMLUListElement[JC] def appendChild(newChild: Node): Node HTMLUListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLUListElement[JC] def attributes: NamedNodeMap HTMLUListElement[JC] def baseURI: String HTMLUListElement[JC] def before(nodes: Node | String*): Unit HTMLUListElement[JC] def blur(): Unit @@ -14283,7 +14150,6 @@ HTMLUListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLUListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUListElement[JC] def hasAttribute(name: String): Boolean HTMLUListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLUListElement[JC] def hasAttributes(): Boolean HTMLUListElement[JC] def hasChildNodes(): Boolean HTMLUListElement[JC] var id: String HTMLUListElement[JC] var innerHTML: String @@ -14444,7 +14310,6 @@ HTMLUnknownElement[JC] def after(nodes: Node | String*): Unit HTMLUnknownElement[JC] def append(nodes: Node | String*): Unit HTMLUnknownElement[JC] def appendChild(newChild: Node): Node HTMLUnknownElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLUnknownElement[JC] def attributes: NamedNodeMap HTMLUnknownElement[JC] def baseURI: String HTMLUnknownElement[JC] def before(nodes: Node | String*): Unit HTMLUnknownElement[JC] def blur(): Unit @@ -14484,7 +14349,6 @@ HTMLUnknownElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLUnknownElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUnknownElement[JC] def hasAttribute(name: String): Boolean HTMLUnknownElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLUnknownElement[JC] def hasAttributes(): Boolean HTMLUnknownElement[JC] def hasChildNodes(): Boolean HTMLUnknownElement[JC] var id: String HTMLUnknownElement[JC] var innerHTML: String @@ -14645,7 +14509,6 @@ HTMLVideoElement[JC] def after(nodes: Node | String*): Unit HTMLVideoElement[JC] def append(nodes: Node | String*): Unit HTMLVideoElement[JC] def appendChild(newChild: Node): Node HTMLVideoElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLVideoElement[JC] def attributes: NamedNodeMap HTMLVideoElement[JC] def audioTracks: AudioTrackList HTMLVideoElement[JC] var autoplay: Boolean HTMLVideoElement[JC] def baseURI: String @@ -14696,7 +14559,6 @@ HTMLVideoElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLVideoElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLVideoElement[JC] def hasAttribute(name: String): Boolean HTMLVideoElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLVideoElement[JC] def hasAttributes(): Boolean HTMLVideoElement[JC] def hasChildNodes(): Boolean HTMLVideoElement[JC] var height: Int HTMLVideoElement[JC] var id: String @@ -15159,7 +15021,6 @@ Image[JC] var alt: String Image[JC] def append(nodes: Node | String*): Unit Image[JC] def appendChild(newChild: Node): Node Image[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -Image[JC] def attributes: NamedNodeMap Image[JC] def baseURI: String Image[JC] def before(nodes: Node | String*): Unit Image[JC] def blur(): Unit @@ -15201,7 +15062,6 @@ Image[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Image[JC] var gotpointercapture: js.Function1[PointerEvent, _] Image[JC] def hasAttribute(name: String): Boolean Image[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -Image[JC] def hasAttributes(): Boolean Image[JC] def hasChildNodes(): Boolean Image[JC] var height: Int Image[JC] var href: String @@ -16395,7 +16255,6 @@ NavigatorVibration[JT] def vibrate(pattern: js.Array[Double]): Boolean Node[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit Node[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Node[JC] def appendChild(newChild: Node): Node -Node[JC] def attributes: NamedNodeMap Node[JC] def baseURI: String Node[JC] def childNodes: NodeList[Node] Node[JC] def cloneNode(deep: Boolean?): Node @@ -16403,7 +16262,6 @@ Node[JC] def compareDocumentPosition(other: Node): Int Node[JC] def contains(otherNode: Node): Boolean Node[JC] def dispatchEvent(evt: Event): Boolean Node[JC] def firstChild: Node -Node[JC] def hasAttributes(): Boolean Node[JC] def hasChildNodes(): Boolean Node[JC] var innerText: String Node[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -16851,7 +16709,6 @@ PresentationStyle[SO] val unspecified: PresentationStyle ProcessingInstruction[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit ProcessingInstruction[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit ProcessingInstruction[JC] def appendChild(newChild: Node): Node -ProcessingInstruction[JC] def attributes: NamedNodeMap ProcessingInstruction[JC] def baseURI: String ProcessingInstruction[JC] def childNodes: NodeList[Node] ProcessingInstruction[JC] def cloneNode(deep: Boolean?): Node @@ -16860,7 +16717,6 @@ ProcessingInstruction[JC] def contains(otherNode: Node): Boolean ProcessingInstruction[JC] def data: String ProcessingInstruction[JC] def dispatchEvent(evt: Event): Boolean ProcessingInstruction[JC] def firstChild: Node -ProcessingInstruction[JC] def hasAttributes(): Boolean ProcessingInstruction[JC] def hasChildNodes(): Boolean ProcessingInstruction[JC] var innerText: String ProcessingInstruction[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -17379,7 +17235,6 @@ SVGAElement[JC] def after(nodes: Node | String*): Unit SVGAElement[JC] def append(nodes: Node | String*): Unit SVGAElement[JC] def appendChild(newChild: Node): Node SVGAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGAElement[JC] def attributes: NamedNodeMap SVGAElement[JC] def baseURI: String SVGAElement[JC] def before(nodes: Node | String*): Unit SVGAElement[JC] def childElementCount: Int @@ -17415,7 +17270,6 @@ SVGAElement[JC] def getScreenCTM(): SVGMatrix SVGAElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGAElement[JC] def hasAttribute(name: String): Boolean SVGAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGAElement[JC] def hasAttributes(): Boolean SVGAElement[JC] def hasChildNodes(): Boolean SVGAElement[JC] def hasExtension(extension: String): Boolean SVGAElement[JC] var href: SVGAnimatedString @@ -17548,7 +17402,6 @@ SVGCircleElement[JC] def after(nodes: Node | String*): Unit SVGCircleElement[JC] def append(nodes: Node | String*): Unit SVGCircleElement[JC] def appendChild(newChild: Node): Node SVGCircleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGCircleElement[JC] def attributes: NamedNodeMap SVGCircleElement[JC] def baseURI: String SVGCircleElement[JC] def before(nodes: Node | String*): Unit SVGCircleElement[JC] def childElementCount: Int @@ -17586,7 +17439,6 @@ SVGCircleElement[JC] def getScreenCTM(): SVGMatrix SVGCircleElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGCircleElement[JC] def hasAttribute(name: String): Boolean SVGCircleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGCircleElement[JC] def hasAttributes(): Boolean SVGCircleElement[JC] def hasChildNodes(): Boolean SVGCircleElement[JC] def hasExtension(extension: String): Boolean SVGCircleElement[JC] var id: String @@ -17683,7 +17535,6 @@ SVGClipPathElement[JC] def after(nodes: Node | String*): Unit SVGClipPathElement[JC] def append(nodes: Node | String*): Unit SVGClipPathElement[JC] def appendChild(newChild: Node): Node SVGClipPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGClipPathElement[JC] def attributes: NamedNodeMap SVGClipPathElement[JC] def baseURI: String SVGClipPathElement[JC] def before(nodes: Node | String*): Unit SVGClipPathElement[JC] def childElementCount: Int @@ -17720,7 +17571,6 @@ SVGClipPathElement[JC] def getScreenCTM(): SVGMatrix SVGClipPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGClipPathElement[JC] def hasAttribute(name: String): Boolean SVGClipPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGClipPathElement[JC] def hasAttributes(): Boolean SVGClipPathElement[JC] def hasChildNodes(): Boolean SVGClipPathElement[JC] def hasExtension(extension: String): Boolean SVGClipPathElement[JC] var id: String @@ -17814,7 +17664,6 @@ SVGComponentTransferFunctionElement[JC] def amplitude: SVGAnimatedNumber SVGComponentTransferFunctionElement[JC] def append(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def appendChild(newChild: Node): Node SVGComponentTransferFunctionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGComponentTransferFunctionElement[JC] def attributes: NamedNodeMap SVGComponentTransferFunctionElement[JC] def baseURI: String SVGComponentTransferFunctionElement[JC] def before(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def childElementCount: Int @@ -17844,7 +17693,6 @@ SVGComponentTransferFunctionElement[JC] def getElementsByTagName(name: String): SVGComponentTransferFunctionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGComponentTransferFunctionElement[JC] def hasAttribute(name: String): Boolean SVGComponentTransferFunctionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGComponentTransferFunctionElement[JC] def hasAttributes(): Boolean SVGComponentTransferFunctionElement[JC] def hasChildNodes(): Boolean SVGComponentTransferFunctionElement[JC] var id: String SVGComponentTransferFunctionElement[JC] var innerHTML: String @@ -17939,7 +17787,6 @@ SVGDefsElement[JC] def after(nodes: Node | String*): Unit SVGDefsElement[JC] def append(nodes: Node | String*): Unit SVGDefsElement[JC] def appendChild(newChild: Node): Node SVGDefsElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGDefsElement[JC] def attributes: NamedNodeMap SVGDefsElement[JC] def baseURI: String SVGDefsElement[JC] def before(nodes: Node | String*): Unit SVGDefsElement[JC] def childElementCount: Int @@ -17975,7 +17822,6 @@ SVGDefsElement[JC] def getScreenCTM(): SVGMatrix SVGDefsElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGDefsElement[JC] def hasAttribute(name: String): Boolean SVGDefsElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGDefsElement[JC] def hasAttributes(): Boolean SVGDefsElement[JC] def hasChildNodes(): Boolean SVGDefsElement[JC] def hasExtension(extension: String): Boolean SVGDefsElement[JC] var id: String @@ -18068,7 +17914,6 @@ SVGDescElement[JC] def after(nodes: Node | String*): Unit SVGDescElement[JC] def append(nodes: Node | String*): Unit SVGDescElement[JC] def appendChild(newChild: Node): Node SVGDescElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGDescElement[JC] def attributes: NamedNodeMap SVGDescElement[JC] def baseURI: String SVGDescElement[JC] def before(nodes: Node | String*): Unit SVGDescElement[JC] def childElementCount: Int @@ -18098,7 +17943,6 @@ SVGDescElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGDescElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGDescElement[JC] def hasAttribute(name: String): Boolean SVGDescElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGDescElement[JC] def hasAttributes(): Boolean SVGDescElement[JC] def hasChildNodes(): Boolean SVGDescElement[JC] var id: String SVGDescElement[JC] var innerHTML: String @@ -18185,7 +18029,6 @@ SVGElement[JC] def after(nodes: Node | String*): Unit SVGElement[JC] def append(nodes: Node | String*): Unit SVGElement[JC] def appendChild(newChild: Node): Node SVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGElement[JC] def attributes: NamedNodeMap SVGElement[JC] def baseURI: String SVGElement[JC] def before(nodes: Node | String*): Unit SVGElement[JC] def childElementCount: Int @@ -18214,7 +18057,6 @@ SVGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Element] SVGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGElement[JC] def hasAttribute(name: String): Boolean SVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGElement[JC] def hasAttributes(): Boolean SVGElement[JC] def hasChildNodes(): Boolean SVGElement[JC] var id: String SVGElement[JC] var innerHTML: String @@ -18313,7 +18155,6 @@ SVGEllipseElement[JC] def after(nodes: Node | String*): Unit SVGEllipseElement[JC] def append(nodes: Node | String*): Unit SVGEllipseElement[JC] def appendChild(newChild: Node): Node SVGEllipseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGEllipseElement[JC] def attributes: NamedNodeMap SVGEllipseElement[JC] def baseURI: String SVGEllipseElement[JC] def before(nodes: Node | String*): Unit SVGEllipseElement[JC] def childElementCount: Int @@ -18351,7 +18192,6 @@ SVGEllipseElement[JC] def getScreenCTM(): SVGMatrix SVGEllipseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGEllipseElement[JC] def hasAttribute(name: String): Boolean SVGEllipseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGEllipseElement[JC] def hasAttributes(): Boolean SVGEllipseElement[JC] def hasChildNodes(): Boolean SVGEllipseElement[JC] def hasExtension(extension: String): Boolean SVGEllipseElement[JC] var id: String @@ -18453,7 +18293,6 @@ SVGFEBlendElement[JC] def after(nodes: Node | String*): Unit SVGFEBlendElement[JC] def append(nodes: Node | String*): Unit SVGFEBlendElement[JC] def appendChild(newChild: Node): Node SVGFEBlendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEBlendElement[JC] def attributes: NamedNodeMap SVGFEBlendElement[JC] def baseURI: String SVGFEBlendElement[JC] def before(nodes: Node | String*): Unit SVGFEBlendElement[JC] def childElementCount: Int @@ -18483,7 +18322,6 @@ SVGFEBlendElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEBlendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEBlendElement[JC] def hasAttribute(name: String): Boolean SVGFEBlendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEBlendElement[JC] def hasAttributes(): Boolean SVGFEBlendElement[JC] def hasChildNodes(): Boolean SVGFEBlendElement[JC] def height: SVGAnimatedLength SVGFEBlendElement[JC] var id: String @@ -18582,7 +18420,6 @@ SVGFEColorMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEColorMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEColorMatrixElement[JC] def attributes: NamedNodeMap SVGFEColorMatrixElement[JC] def baseURI: String SVGFEColorMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def childElementCount: Int @@ -18612,7 +18449,6 @@ SVGFEColorMatrixElement[JC] def getElementsByTagName(name: String): HTMLCollecti SVGFEColorMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEColorMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEColorMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEColorMatrixElement[JC] def hasAttributes(): Boolean SVGFEColorMatrixElement[JC] def hasChildNodes(): Boolean SVGFEColorMatrixElement[JC] def height: SVGAnimatedLength SVGFEColorMatrixElement[JC] var id: String @@ -18710,7 +18546,6 @@ SVGFEComponentTransferElement[JC] def after(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def append(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def appendChild(newChild: Node): Node SVGFEComponentTransferElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEComponentTransferElement[JC] def attributes: NamedNodeMap SVGFEComponentTransferElement[JC] def baseURI: String SVGFEComponentTransferElement[JC] def before(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def childElementCount: Int @@ -18740,7 +18575,6 @@ SVGFEComponentTransferElement[JC] def getElementsByTagName(name: String): HTMLCo SVGFEComponentTransferElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEComponentTransferElement[JC] def hasAttribute(name: String): Boolean SVGFEComponentTransferElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEComponentTransferElement[JC] def hasAttributes(): Boolean SVGFEComponentTransferElement[JC] def hasChildNodes(): Boolean SVGFEComponentTransferElement[JC] def height: SVGAnimatedLength SVGFEComponentTransferElement[JC] var id: String @@ -18831,7 +18665,6 @@ SVGFECompositeElement[JC] def after(nodes: Node | String*): Unit SVGFECompositeElement[JC] def append(nodes: Node | String*): Unit SVGFECompositeElement[JC] def appendChild(newChild: Node): Node SVGFECompositeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFECompositeElement[JC] def attributes: NamedNodeMap SVGFECompositeElement[JC] def baseURI: String SVGFECompositeElement[JC] def before(nodes: Node | String*): Unit SVGFECompositeElement[JC] def childElementCount: Int @@ -18861,7 +18694,6 @@ SVGFECompositeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFECompositeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFECompositeElement[JC] def hasAttribute(name: String): Boolean SVGFECompositeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFECompositeElement[JC] def hasAttributes(): Boolean SVGFECompositeElement[JC] def hasChildNodes(): Boolean SVGFECompositeElement[JC] def height: SVGAnimatedLength SVGFECompositeElement[JC] var id: String @@ -18965,7 +18797,6 @@ SVGFEConvolveMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEConvolveMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEConvolveMatrixElement[JC] def attributes: NamedNodeMap SVGFEConvolveMatrixElement[JC] def baseURI: String SVGFEConvolveMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def bias: SVGAnimatedNumber @@ -18998,7 +18829,6 @@ SVGFEConvolveMatrixElement[JC] def getElementsByTagName(name: String): HTMLColle SVGFEConvolveMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEConvolveMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEConvolveMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEConvolveMatrixElement[JC] def hasAttributes(): Boolean SVGFEConvolveMatrixElement[JC] def hasChildNodes(): Boolean SVGFEConvolveMatrixElement[JC] def height: SVGAnimatedLength SVGFEConvolveMatrixElement[JC] var id: String @@ -19101,7 +18931,6 @@ SVGFEDiffuseLightingElement[JC] def after(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def append(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def appendChild(newChild: Node): Node SVGFEDiffuseLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEDiffuseLightingElement[JC] def attributes: NamedNodeMap SVGFEDiffuseLightingElement[JC] def baseURI: String SVGFEDiffuseLightingElement[JC] def before(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def childElementCount: Int @@ -19132,7 +18961,6 @@ SVGFEDiffuseLightingElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDiffuseLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDiffuseLightingElement[JC] def hasAttribute(name: String): Boolean SVGFEDiffuseLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEDiffuseLightingElement[JC] def hasAttributes(): Boolean SVGFEDiffuseLightingElement[JC] def hasChildNodes(): Boolean SVGFEDiffuseLightingElement[JC] def height: SVGAnimatedLength SVGFEDiffuseLightingElement[JC] var id: String @@ -19226,7 +19054,6 @@ SVGFEDisplacementMapElement[JC] def after(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def append(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def appendChild(newChild: Node): Node SVGFEDisplacementMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEDisplacementMapElement[JC] def attributes: NamedNodeMap SVGFEDisplacementMapElement[JC] def baseURI: String SVGFEDisplacementMapElement[JC] def before(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def childElementCount: Int @@ -19256,7 +19083,6 @@ SVGFEDisplacementMapElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDisplacementMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDisplacementMapElement[JC] def hasAttribute(name: String): Boolean SVGFEDisplacementMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEDisplacementMapElement[JC] def hasAttributes(): Boolean SVGFEDisplacementMapElement[JC] def hasChildNodes(): Boolean SVGFEDisplacementMapElement[JC] def height: SVGAnimatedLength SVGFEDisplacementMapElement[JC] var id: String @@ -19356,7 +19182,6 @@ SVGFEDistantLightElement[JC] def after(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def append(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def appendChild(newChild: Node): Node SVGFEDistantLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEDistantLightElement[JC] def attributes: NamedNodeMap SVGFEDistantLightElement[JC] def azimuth: SVGAnimatedNumber SVGFEDistantLightElement[JC] def baseURI: String SVGFEDistantLightElement[JC] def before(nodes: Node | String*): Unit @@ -19387,7 +19212,6 @@ SVGFEDistantLightElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEDistantLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDistantLightElement[JC] def hasAttribute(name: String): Boolean SVGFEDistantLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEDistantLightElement[JC] def hasAttributes(): Boolean SVGFEDistantLightElement[JC] def hasChildNodes(): Boolean SVGFEDistantLightElement[JC] var id: String SVGFEDistantLightElement[JC] var innerHTML: String @@ -19471,7 +19295,6 @@ SVGFEFloodElement[JC] def after(nodes: Node | String*): Unit SVGFEFloodElement[JC] def append(nodes: Node | String*): Unit SVGFEFloodElement[JC] def appendChild(newChild: Node): Node SVGFEFloodElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFloodElement[JC] def attributes: NamedNodeMap SVGFEFloodElement[JC] def baseURI: String SVGFEFloodElement[JC] def before(nodes: Node | String*): Unit SVGFEFloodElement[JC] def childElementCount: Int @@ -19501,7 +19324,6 @@ SVGFEFloodElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFloodElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFloodElement[JC] def hasAttribute(name: String): Boolean SVGFEFloodElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFloodElement[JC] def hasAttributes(): Boolean SVGFEFloodElement[JC] def hasChildNodes(): Boolean SVGFEFloodElement[JC] def height: SVGAnimatedLength SVGFEFloodElement[JC] var id: String @@ -19592,7 +19414,6 @@ SVGFEFuncAElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncAElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def appendChild(newChild: Node): Node SVGFEFuncAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncAElement[JC] def attributes: NamedNodeMap SVGFEFuncAElement[JC] def baseURI: String SVGFEFuncAElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def childElementCount: Int @@ -19622,7 +19443,6 @@ SVGFEFuncAElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncAElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncAElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncAElement[JC] def hasAttributes(): Boolean SVGFEFuncAElement[JC] def hasChildNodes(): Boolean SVGFEFuncAElement[JC] var id: String SVGFEFuncAElement[JC] var innerHTML: String @@ -19712,7 +19532,6 @@ SVGFEFuncBElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncBElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def appendChild(newChild: Node): Node SVGFEFuncBElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncBElement[JC] def attributes: NamedNodeMap SVGFEFuncBElement[JC] def baseURI: String SVGFEFuncBElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def childElementCount: Int @@ -19742,7 +19561,6 @@ SVGFEFuncBElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncBElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncBElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncBElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncBElement[JC] def hasAttributes(): Boolean SVGFEFuncBElement[JC] def hasChildNodes(): Boolean SVGFEFuncBElement[JC] var id: String SVGFEFuncBElement[JC] var innerHTML: String @@ -19832,7 +19650,6 @@ SVGFEFuncGElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncGElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def appendChild(newChild: Node): Node SVGFEFuncGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncGElement[JC] def attributes: NamedNodeMap SVGFEFuncGElement[JC] def baseURI: String SVGFEFuncGElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def childElementCount: Int @@ -19862,7 +19679,6 @@ SVGFEFuncGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncGElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncGElement[JC] def hasAttributes(): Boolean SVGFEFuncGElement[JC] def hasChildNodes(): Boolean SVGFEFuncGElement[JC] var id: String SVGFEFuncGElement[JC] var innerHTML: String @@ -19952,7 +19768,6 @@ SVGFEFuncRElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncRElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def appendChild(newChild: Node): Node SVGFEFuncRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncRElement[JC] def attributes: NamedNodeMap SVGFEFuncRElement[JC] def baseURI: String SVGFEFuncRElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def childElementCount: Int @@ -19982,7 +19797,6 @@ SVGFEFuncRElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncRElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncRElement[JC] def hasAttributes(): Boolean SVGFEFuncRElement[JC] def hasChildNodes(): Boolean SVGFEFuncRElement[JC] var id: String SVGFEFuncRElement[JC] var innerHTML: String @@ -20071,7 +19885,6 @@ SVGFEGaussianBlurElement[JC] def after(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def append(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def appendChild(newChild: Node): Node SVGFEGaussianBlurElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEGaussianBlurElement[JC] def attributes: NamedNodeMap SVGFEGaussianBlurElement[JC] def baseURI: String SVGFEGaussianBlurElement[JC] def before(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def childElementCount: Int @@ -20101,7 +19914,6 @@ SVGFEGaussianBlurElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEGaussianBlurElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEGaussianBlurElement[JC] def hasAttribute(name: String): Boolean SVGFEGaussianBlurElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEGaussianBlurElement[JC] def hasAttributes(): Boolean SVGFEGaussianBlurElement[JC] def hasChildNodes(): Boolean SVGFEGaussianBlurElement[JC] def height: SVGAnimatedLength SVGFEGaussianBlurElement[JC] var id: String @@ -20195,7 +20007,6 @@ SVGFEImageElement[JC] def after(nodes: Node | String*): Unit SVGFEImageElement[JC] def append(nodes: Node | String*): Unit SVGFEImageElement[JC] def appendChild(newChild: Node): Node SVGFEImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEImageElement[JC] def attributes: NamedNodeMap SVGFEImageElement[JC] def baseURI: String SVGFEImageElement[JC] def before(nodes: Node | String*): Unit SVGFEImageElement[JC] def childElementCount: Int @@ -20226,7 +20037,6 @@ SVGFEImageElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEImageElement[JC] def hasAttribute(name: String): Boolean SVGFEImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEImageElement[JC] def hasAttributes(): Boolean SVGFEImageElement[JC] def hasChildNodes(): Boolean SVGFEImageElement[JC] def height: SVGAnimatedLength SVGFEImageElement[JC] var href: SVGAnimatedString @@ -20320,7 +20130,6 @@ SVGFEMergeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEMergeElement[JC] def attributes: NamedNodeMap SVGFEMergeElement[JC] def baseURI: String SVGFEMergeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeElement[JC] def childElementCount: Int @@ -20350,7 +20159,6 @@ SVGFEMergeElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEMergeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEMergeElement[JC] def hasAttributes(): Boolean SVGFEMergeElement[JC] def hasChildNodes(): Boolean SVGFEMergeElement[JC] def height: SVGAnimatedLength SVGFEMergeElement[JC] var id: String @@ -20440,7 +20248,6 @@ SVGFEMergeNodeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeNodeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEMergeNodeElement[JC] def attributes: NamedNodeMap SVGFEMergeNodeElement[JC] def baseURI: String SVGFEMergeNodeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def childElementCount: Int @@ -20469,7 +20276,6 @@ SVGFEMergeNodeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFEMergeNodeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeNodeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeNodeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEMergeNodeElement[JC] def hasAttributes(): Boolean SVGFEMergeNodeElement[JC] def hasChildNodes(): Boolean SVGFEMergeNodeElement[JC] var id: String SVGFEMergeNodeElement[JC] def in1: SVGAnimatedString @@ -20554,7 +20360,6 @@ SVGFEMorphologyElement[JC] def after(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def append(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def appendChild(newChild: Node): Node SVGFEMorphologyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEMorphologyElement[JC] def attributes: NamedNodeMap SVGFEMorphologyElement[JC] def baseURI: String SVGFEMorphologyElement[JC] def before(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def childElementCount: Int @@ -20584,7 +20389,6 @@ SVGFEMorphologyElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEMorphologyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMorphologyElement[JC] def hasAttribute(name: String): Boolean SVGFEMorphologyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEMorphologyElement[JC] def hasAttributes(): Boolean SVGFEMorphologyElement[JC] def hasChildNodes(): Boolean SVGFEMorphologyElement[JC] def height: SVGAnimatedLength SVGFEMorphologyElement[JC] var id: String @@ -20681,7 +20485,6 @@ SVGFEOffsetElement[JC] def after(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def append(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def appendChild(newChild: Node): Node SVGFEOffsetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEOffsetElement[JC] def attributes: NamedNodeMap SVGFEOffsetElement[JC] def baseURI: String SVGFEOffsetElement[JC] def before(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def childElementCount: Int @@ -20713,7 +20516,6 @@ SVGFEOffsetElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGFEOffsetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEOffsetElement[JC] def hasAttribute(name: String): Boolean SVGFEOffsetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEOffsetElement[JC] def hasAttributes(): Boolean SVGFEOffsetElement[JC] def hasChildNodes(): Boolean SVGFEOffsetElement[JC] def height: SVGAnimatedLength SVGFEOffsetElement[JC] var id: String @@ -20804,7 +20606,6 @@ SVGFEPointLightElement[JC] def after(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def append(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def appendChild(newChild: Node): Node SVGFEPointLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEPointLightElement[JC] def attributes: NamedNodeMap SVGFEPointLightElement[JC] def baseURI: String SVGFEPointLightElement[JC] def before(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def childElementCount: Int @@ -20833,7 +20634,6 @@ SVGFEPointLightElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEPointLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEPointLightElement[JC] def hasAttribute(name: String): Boolean SVGFEPointLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEPointLightElement[JC] def hasAttributes(): Boolean SVGFEPointLightElement[JC] def hasChildNodes(): Boolean SVGFEPointLightElement[JC] var id: String SVGFEPointLightElement[JC] var innerHTML: String @@ -20920,7 +20720,6 @@ SVGFESpecularLightingElement[JC] def after(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def append(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def appendChild(newChild: Node): Node SVGFESpecularLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFESpecularLightingElement[JC] def attributes: NamedNodeMap SVGFESpecularLightingElement[JC] def baseURI: String SVGFESpecularLightingElement[JC] def before(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def childElementCount: Int @@ -20950,7 +20749,6 @@ SVGFESpecularLightingElement[JC] def getElementsByTagName(name: String): HTMLCol SVGFESpecularLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpecularLightingElement[JC] def hasAttribute(name: String): Boolean SVGFESpecularLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFESpecularLightingElement[JC] def hasAttributes(): Boolean SVGFESpecularLightingElement[JC] def hasChildNodes(): Boolean SVGFESpecularLightingElement[JC] def height: SVGAnimatedLength SVGFESpecularLightingElement[JC] var id: String @@ -21046,7 +20844,6 @@ SVGFESpotLightElement[JC] def after(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def append(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def appendChild(newChild: Node): Node SVGFESpotLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFESpotLightElement[JC] def attributes: NamedNodeMap SVGFESpotLightElement[JC] def baseURI: String SVGFESpotLightElement[JC] def before(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def childElementCount: Int @@ -21075,7 +20872,6 @@ SVGFESpotLightElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFESpotLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpotLightElement[JC] def hasAttribute(name: String): Boolean SVGFESpotLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFESpotLightElement[JC] def hasAttributes(): Boolean SVGFESpotLightElement[JC] def hasChildNodes(): Boolean SVGFESpotLightElement[JC] var id: String SVGFESpotLightElement[JC] var innerHTML: String @@ -21167,7 +20963,6 @@ SVGFETileElement[JC] def after(nodes: Node | String*): Unit SVGFETileElement[JC] def append(nodes: Node | String*): Unit SVGFETileElement[JC] def appendChild(newChild: Node): Node SVGFETileElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFETileElement[JC] def attributes: NamedNodeMap SVGFETileElement[JC] def baseURI: String SVGFETileElement[JC] def before(nodes: Node | String*): Unit SVGFETileElement[JC] def childElementCount: Int @@ -21197,7 +20992,6 @@ SVGFETileElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFETileElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETileElement[JC] def hasAttribute(name: String): Boolean SVGFETileElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFETileElement[JC] def hasAttributes(): Boolean SVGFETileElement[JC] def hasChildNodes(): Boolean SVGFETileElement[JC] def height: SVGAnimatedLength SVGFETileElement[JC] var id: String @@ -21288,7 +21082,6 @@ SVGFETurbulenceElement[JC] def after(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def append(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def appendChild(newChild: Node): Node SVGFETurbulenceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFETurbulenceElement[JC] def attributes: NamedNodeMap SVGFETurbulenceElement[JC] def baseFrequencyX: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseFrequencyY: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseURI: String @@ -21320,7 +21113,6 @@ SVGFETurbulenceElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFETurbulenceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETurbulenceElement[JC] def hasAttribute(name: String): Boolean SVGFETurbulenceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFETurbulenceElement[JC] def hasAttributes(): Boolean SVGFETurbulenceElement[JC] def hasChildNodes(): Boolean SVGFETurbulenceElement[JC] def height: SVGAnimatedLength SVGFETurbulenceElement[JC] var id: String @@ -21423,7 +21215,6 @@ SVGFilterElement[JC] def after(nodes: Node | String*): Unit SVGFilterElement[JC] def append(nodes: Node | String*): Unit SVGFilterElement[JC] def appendChild(newChild: Node): Node SVGFilterElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFilterElement[JC] def attributes: NamedNodeMap SVGFilterElement[JC] def baseURI: String SVGFilterElement[JC] def before(nodes: Node | String*): Unit SVGFilterElement[JC] def childElementCount: Int @@ -21457,7 +21248,6 @@ SVGFilterElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFilterElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFilterElement[JC] def hasAttribute(name: String): Boolean SVGFilterElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFilterElement[JC] def hasAttributes(): Boolean SVGFilterElement[JC] def hasChildNodes(): Boolean SVGFilterElement[JC] def height: SVGAnimatedLength SVGFilterElement[JC] var href: SVGAnimatedString @@ -21560,7 +21350,6 @@ SVGGElement[JC] def after(nodes: Node | String*): Unit SVGGElement[JC] def append(nodes: Node | String*): Unit SVGGElement[JC] def appendChild(newChild: Node): Node SVGGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGGElement[JC] def attributes: NamedNodeMap SVGGElement[JC] def baseURI: String SVGGElement[JC] def before(nodes: Node | String*): Unit SVGGElement[JC] def childElementCount: Int @@ -21596,7 +21385,6 @@ SVGGElement[JC] def getScreenCTM(): SVGMatrix SVGGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGGElement[JC] def hasAttribute(name: String): Boolean SVGGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGGElement[JC] def hasAttributes(): Boolean SVGGElement[JC] def hasChildNodes(): Boolean SVGGElement[JC] def hasExtension(extension: String): Boolean SVGGElement[JC] var id: String @@ -21692,7 +21480,6 @@ SVGGradientElement[JC] def after(nodes: Node | String*): Unit SVGGradientElement[JC] def append(nodes: Node | String*): Unit SVGGradientElement[JC] def appendChild(newChild: Node): Node SVGGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGGradientElement[JC] def attributes: NamedNodeMap SVGGradientElement[JC] def baseURI: String SVGGradientElement[JC] def before(nodes: Node | String*): Unit SVGGradientElement[JC] def childElementCount: Int @@ -21725,7 +21512,6 @@ SVGGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGGradientElement[JC] def hasAttribute(name: String): Boolean SVGGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGGradientElement[JC] def hasAttributes(): Boolean SVGGradientElement[JC] def hasChildNodes(): Boolean SVGGradientElement[JC] var href: SVGAnimatedString SVGGradientElement[JC] var id: String @@ -21816,7 +21602,6 @@ SVGImageElement[JC] def after(nodes: Node | String*): Unit SVGImageElement[JC] def append(nodes: Node | String*): Unit SVGImageElement[JC] def appendChild(newChild: Node): Node SVGImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGImageElement[JC] def attributes: NamedNodeMap SVGImageElement[JC] def baseURI: String SVGImageElement[JC] def before(nodes: Node | String*): Unit SVGImageElement[JC] def childElementCount: Int @@ -21852,7 +21637,6 @@ SVGImageElement[JC] def getScreenCTM(): SVGMatrix SVGImageElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGImageElement[JC] def hasAttribute(name: String): Boolean SVGImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGImageElement[JC] def hasAttributes(): Boolean SVGImageElement[JC] def hasChildNodes(): Boolean SVGImageElement[JC] def hasExtension(extension: String): Boolean SVGImageElement[JC] def height: SVGAnimatedLength @@ -21978,7 +21762,6 @@ SVGLineElement[JC] def after(nodes: Node | String*): Unit SVGLineElement[JC] def append(nodes: Node | String*): Unit SVGLineElement[JC] def appendChild(newChild: Node): Node SVGLineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGLineElement[JC] def attributes: NamedNodeMap SVGLineElement[JC] def baseURI: String SVGLineElement[JC] def before(nodes: Node | String*): Unit SVGLineElement[JC] def childElementCount: Int @@ -22014,7 +21797,6 @@ SVGLineElement[JC] def getScreenCTM(): SVGMatrix SVGLineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGLineElement[JC] def hasAttribute(name: String): Boolean SVGLineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGLineElement[JC] def hasAttributes(): Boolean SVGLineElement[JC] def hasChildNodes(): Boolean SVGLineElement[JC] def hasExtension(extension: String): Boolean SVGLineElement[JC] var id: String @@ -22114,7 +21896,6 @@ SVGLinearGradientElement[JC] def after(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def append(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def appendChild(newChild: Node): Node SVGLinearGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGLinearGradientElement[JC] def attributes: NamedNodeMap SVGLinearGradientElement[JC] def baseURI: String SVGLinearGradientElement[JC] def before(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def childElementCount: Int @@ -22147,7 +21928,6 @@ SVGLinearGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGLinearGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGLinearGradientElement[JC] def hasAttribute(name: String): Boolean SVGLinearGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGLinearGradientElement[JC] def hasAttributes(): Boolean SVGLinearGradientElement[JC] def hasChildNodes(): Boolean SVGLinearGradientElement[JC] var href: SVGAnimatedString SVGLinearGradientElement[JC] var id: String @@ -22244,7 +22024,6 @@ SVGMarkerElement[JC] def after(nodes: Node | String*): Unit SVGMarkerElement[JC] def append(nodes: Node | String*): Unit SVGMarkerElement[JC] def appendChild(newChild: Node): Node SVGMarkerElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGMarkerElement[JC] def attributes: NamedNodeMap SVGMarkerElement[JC] def baseURI: String SVGMarkerElement[JC] def before(nodes: Node | String*): Unit SVGMarkerElement[JC] def childElementCount: Int @@ -22275,7 +22054,6 @@ SVGMarkerElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGMarkerElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMarkerElement[JC] def hasAttribute(name: String): Boolean SVGMarkerElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGMarkerElement[JC] def hasAttributes(): Boolean SVGMarkerElement[JC] def hasChildNodes(): Boolean SVGMarkerElement[JC] var id: String SVGMarkerElement[JC] var innerHTML: String @@ -22382,7 +22160,6 @@ SVGMaskElement[JC] def after(nodes: Node | String*): Unit SVGMaskElement[JC] def append(nodes: Node | String*): Unit SVGMaskElement[JC] def appendChild(newChild: Node): Node SVGMaskElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGMaskElement[JC] def attributes: NamedNodeMap SVGMaskElement[JC] def baseURI: String SVGMaskElement[JC] def before(nodes: Node | String*): Unit SVGMaskElement[JC] def childElementCount: Int @@ -22413,7 +22190,6 @@ SVGMaskElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGMaskElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMaskElement[JC] def hasAttribute(name: String): Boolean SVGMaskElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGMaskElement[JC] def hasAttributes(): Boolean SVGMaskElement[JC] def hasChildNodes(): Boolean SVGMaskElement[JC] def hasExtension(extension: String): Boolean SVGMaskElement[JC] def height: SVGAnimatedLength @@ -22527,7 +22303,6 @@ SVGMetadataElement[JC] def after(nodes: Node | String*): Unit SVGMetadataElement[JC] def append(nodes: Node | String*): Unit SVGMetadataElement[JC] def appendChild(newChild: Node): Node SVGMetadataElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGMetadataElement[JC] def attributes: NamedNodeMap SVGMetadataElement[JC] def baseURI: String SVGMetadataElement[JC] def before(nodes: Node | String*): Unit SVGMetadataElement[JC] def childElementCount: Int @@ -22556,7 +22331,6 @@ SVGMetadataElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGMetadataElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMetadataElement[JC] def hasAttribute(name: String): Boolean SVGMetadataElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGMetadataElement[JC] def hasAttributes(): Boolean SVGMetadataElement[JC] def hasChildNodes(): Boolean SVGMetadataElement[JC] var id: String SVGMetadataElement[JC] var innerHTML: String @@ -22649,7 +22423,6 @@ SVGPathElement[JC] def after(nodes: Node | String*): Unit SVGPathElement[JC] def append(nodes: Node | String*): Unit SVGPathElement[JC] def appendChild(newChild: Node): Node SVGPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPathElement[JC] def attributes: NamedNodeMap SVGPathElement[JC] def baseURI: String SVGPathElement[JC] def before(nodes: Node | String*): Unit SVGPathElement[JC] def childElementCount: Int @@ -22707,7 +22480,6 @@ SVGPathElement[JC] def getTotalLength(): Double SVGPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPathElement[JC] def hasAttribute(name: String): Boolean SVGPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPathElement[JC] def hasAttributes(): Boolean SVGPathElement[JC] def hasChildNodes(): Boolean SVGPathElement[JC] def hasExtension(extension: String): Boolean SVGPathElement[JC] var id: String @@ -22930,7 +22702,6 @@ SVGPatternElement[JC] def after(nodes: Node | String*): Unit SVGPatternElement[JC] def append(nodes: Node | String*): Unit SVGPatternElement[JC] def appendChild(newChild: Node): Node SVGPatternElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPatternElement[JC] def attributes: NamedNodeMap SVGPatternElement[JC] def baseURI: String SVGPatternElement[JC] def before(nodes: Node | String*): Unit SVGPatternElement[JC] def childElementCount: Int @@ -22961,7 +22732,6 @@ SVGPatternElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGPatternElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGPatternElement[JC] def hasAttribute(name: String): Boolean SVGPatternElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPatternElement[JC] def hasAttributes(): Boolean SVGPatternElement[JC] def hasChildNodes(): Boolean SVGPatternElement[JC] def hasExtension(extension: String): Boolean SVGPatternElement[JC] def height: SVGAnimatedLength @@ -23074,7 +22844,6 @@ SVGPolygonElement[JC] def animatedPoints: SVGPointList SVGPolygonElement[JC] def append(nodes: Node | String*): Unit SVGPolygonElement[JC] def appendChild(newChild: Node): Node SVGPolygonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPolygonElement[JC] def attributes: NamedNodeMap SVGPolygonElement[JC] def baseURI: String SVGPolygonElement[JC] def before(nodes: Node | String*): Unit SVGPolygonElement[JC] def childElementCount: Int @@ -23110,7 +22879,6 @@ SVGPolygonElement[JC] def getScreenCTM(): SVGMatrix SVGPolygonElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolygonElement[JC] def hasAttribute(name: String): Boolean SVGPolygonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPolygonElement[JC] def hasAttributes(): Boolean SVGPolygonElement[JC] def hasChildNodes(): Boolean SVGPolygonElement[JC] def hasExtension(extension: String): Boolean SVGPolygonElement[JC] var id: String @@ -23205,7 +22973,6 @@ SVGPolylineElement[JC] def animatedPoints: SVGPointList SVGPolylineElement[JC] def append(nodes: Node | String*): Unit SVGPolylineElement[JC] def appendChild(newChild: Node): Node SVGPolylineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPolylineElement[JC] def attributes: NamedNodeMap SVGPolylineElement[JC] def baseURI: String SVGPolylineElement[JC] def before(nodes: Node | String*): Unit SVGPolylineElement[JC] def childElementCount: Int @@ -23241,7 +23008,6 @@ SVGPolylineElement[JC] def getScreenCTM(): SVGMatrix SVGPolylineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolylineElement[JC] def hasAttribute(name: String): Boolean SVGPolylineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPolylineElement[JC] def hasAttributes(): Boolean SVGPolylineElement[JC] def hasChildNodes(): Boolean SVGPolylineElement[JC] def hasExtension(extension: String): Boolean SVGPolylineElement[JC] var id: String @@ -23354,7 +23120,6 @@ SVGRadialGradientElement[JC] def after(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def append(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def appendChild(newChild: Node): Node SVGRadialGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGRadialGradientElement[JC] def attributes: NamedNodeMap SVGRadialGradientElement[JC] def baseURI: String SVGRadialGradientElement[JC] def before(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def childElementCount: Int @@ -23391,7 +23156,6 @@ SVGRadialGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGRadialGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGRadialGradientElement[JC] def hasAttribute(name: String): Boolean SVGRadialGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGRadialGradientElement[JC] def hasAttributes(): Boolean SVGRadialGradientElement[JC] def hasChildNodes(): Boolean SVGRadialGradientElement[JC] var href: SVGAnimatedString SVGRadialGradientElement[JC] var id: String @@ -23483,7 +23247,6 @@ SVGRectElement[JC] def after(nodes: Node | String*): Unit SVGRectElement[JC] def append(nodes: Node | String*): Unit SVGRectElement[JC] def appendChild(newChild: Node): Node SVGRectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGRectElement[JC] def attributes: NamedNodeMap SVGRectElement[JC] def baseURI: String SVGRectElement[JC] def before(nodes: Node | String*): Unit SVGRectElement[JC] def childElementCount: Int @@ -23519,7 +23282,6 @@ SVGRectElement[JC] def getScreenCTM(): SVGMatrix SVGRectElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGRectElement[JC] def hasAttribute(name: String): Boolean SVGRectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGRectElement[JC] def hasAttributes(): Boolean SVGRectElement[JC] def hasChildNodes(): Boolean SVGRectElement[JC] def hasExtension(extension: String): Boolean SVGRectElement[JC] def height: SVGAnimatedLength @@ -23618,7 +23380,6 @@ SVGSVGElement[JC] def after(nodes: Node | String*): Unit SVGSVGElement[JC] def append(nodes: Node | String*): Unit SVGSVGElement[JC] def appendChild(newChild: Node): Node SVGSVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGSVGElement[JC] def attributes: NamedNodeMap SVGSVGElement[JC] def baseURI: String SVGSVGElement[JC] def before(nodes: Node | String*): Unit SVGSVGElement[JC] def checkEnclosure(element: SVGElement, rect: SVGRect): Boolean @@ -23676,7 +23437,6 @@ SVGSVGElement[JC] def getScreenCTM(): SVGMatrix SVGSVGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSVGElement[JC] def hasAttribute(name: String): Boolean SVGSVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGSVGElement[JC] def hasAttributes(): Boolean SVGSVGElement[JC] def hasChildNodes(): Boolean SVGSVGElement[JC] def hasExtension(extension: String): Boolean SVGSVGElement[JC] def height: SVGAnimatedLength @@ -23792,7 +23552,6 @@ SVGScriptElement[JC] def after(nodes: Node | String*): Unit SVGScriptElement[JC] def append(nodes: Node | String*): Unit SVGScriptElement[JC] def appendChild(newChild: Node): Node SVGScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGScriptElement[JC] def attributes: NamedNodeMap SVGScriptElement[JC] def baseURI: String SVGScriptElement[JC] def before(nodes: Node | String*): Unit SVGScriptElement[JC] def childElementCount: Int @@ -23822,7 +23581,6 @@ SVGScriptElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGScriptElement[JC] def hasAttribute(name: String): Boolean SVGScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGScriptElement[JC] def hasAttributes(): Boolean SVGScriptElement[JC] def hasChildNodes(): Boolean SVGScriptElement[JC] var href: SVGAnimatedString SVGScriptElement[JC] var id: String @@ -23908,7 +23666,6 @@ SVGStopElement[JC] def after(nodes: Node | String*): Unit SVGStopElement[JC] def append(nodes: Node | String*): Unit SVGStopElement[JC] def appendChild(newChild: Node): Node SVGStopElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGStopElement[JC] def attributes: NamedNodeMap SVGStopElement[JC] def baseURI: String SVGStopElement[JC] def before(nodes: Node | String*): Unit SVGStopElement[JC] def childElementCount: Int @@ -23938,7 +23695,6 @@ SVGStopElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGStopElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStopElement[JC] def hasAttribute(name: String): Boolean SVGStopElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGStopElement[JC] def hasAttributes(): Boolean SVGStopElement[JC] def hasChildNodes(): Boolean SVGStopElement[JC] var id: String SVGStopElement[JC] var innerHTML: String @@ -24034,7 +23790,6 @@ SVGStyleElement[JC] def after(nodes: Node | String*): Unit SVGStyleElement[JC] def append(nodes: Node | String*): Unit SVGStyleElement[JC] def appendChild(newChild: Node): Node SVGStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGStyleElement[JC] def attributes: NamedNodeMap SVGStyleElement[JC] def baseURI: String SVGStyleElement[JC] def before(nodes: Node | String*): Unit SVGStyleElement[JC] def childElementCount: Int @@ -24063,7 +23818,6 @@ SVGStyleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStyleElement[JC] def hasAttribute(name: String): Boolean SVGStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGStyleElement[JC] def hasAttributes(): Boolean SVGStyleElement[JC] def hasChildNodes(): Boolean SVGStyleElement[JC] var id: String SVGStyleElement[JC] var innerHTML: String @@ -24152,7 +23906,6 @@ SVGSwitchElement[JC] def after(nodes: Node | String*): Unit SVGSwitchElement[JC] def append(nodes: Node | String*): Unit SVGSwitchElement[JC] def appendChild(newChild: Node): Node SVGSwitchElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGSwitchElement[JC] def attributes: NamedNodeMap SVGSwitchElement[JC] def baseURI: String SVGSwitchElement[JC] def before(nodes: Node | String*): Unit SVGSwitchElement[JC] def childElementCount: Int @@ -24188,7 +23941,6 @@ SVGSwitchElement[JC] def getScreenCTM(): SVGMatrix SVGSwitchElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSwitchElement[JC] def hasAttribute(name: String): Boolean SVGSwitchElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGSwitchElement[JC] def hasAttributes(): Boolean SVGSwitchElement[JC] def hasChildNodes(): Boolean SVGSwitchElement[JC] def hasExtension(extension: String): Boolean SVGSwitchElement[JC] var id: String @@ -24281,7 +24033,6 @@ SVGSymbolElement[JC] def after(nodes: Node | String*): Unit SVGSymbolElement[JC] def append(nodes: Node | String*): Unit SVGSymbolElement[JC] def appendChild(newChild: Node): Node SVGSymbolElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGSymbolElement[JC] def attributes: NamedNodeMap SVGSymbolElement[JC] def baseURI: String SVGSymbolElement[JC] def before(nodes: Node | String*): Unit SVGSymbolElement[JC] def childElementCount: Int @@ -24312,7 +24063,6 @@ SVGSymbolElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGSymbolElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGSymbolElement[JC] def hasAttribute(name: String): Boolean SVGSymbolElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGSymbolElement[JC] def hasAttributes(): Boolean SVGSymbolElement[JC] def hasChildNodes(): Boolean SVGSymbolElement[JC] var id: String SVGSymbolElement[JC] var innerHTML: String @@ -24401,7 +24151,6 @@ SVGTSpanElement[JC] def after(nodes: Node | String*): Unit SVGTSpanElement[JC] def append(nodes: Node | String*): Unit SVGTSpanElement[JC] def appendChild(newChild: Node): Node SVGTSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTSpanElement[JC] def attributes: NamedNodeMap SVGTSpanElement[JC] def baseURI: String SVGTSpanElement[JC] def before(nodes: Node | String*): Unit SVGTSpanElement[JC] def childElementCount: Int @@ -24442,7 +24191,6 @@ SVGTSpanElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTSpanElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTSpanElement[JC] def hasAttribute(name: String): Boolean SVGTSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTSpanElement[JC] def hasAttributes(): Boolean SVGTSpanElement[JC] def hasChildNodes(): Boolean SVGTSpanElement[JC] def hasExtension(extension: String): Boolean SVGTSpanElement[JC] var id: String @@ -24543,7 +24291,6 @@ SVGTextContentElement[JC] def after(nodes: Node | String*): Unit SVGTextContentElement[JC] def append(nodes: Node | String*): Unit SVGTextContentElement[JC] def appendChild(newChild: Node): Node SVGTextContentElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextContentElement[JC] def attributes: NamedNodeMap SVGTextContentElement[JC] def baseURI: String SVGTextContentElement[JC] def before(nodes: Node | String*): Unit SVGTextContentElement[JC] def childElementCount: Int @@ -24582,7 +24329,6 @@ SVGTextContentElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextContentElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextContentElement[JC] def hasAttribute(name: String): Boolean SVGTextContentElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextContentElement[JC] def hasAttributes(): Boolean SVGTextContentElement[JC] def hasChildNodes(): Boolean SVGTextContentElement[JC] def hasExtension(extension: String): Boolean SVGTextContentElement[JC] var id: String @@ -24679,7 +24425,6 @@ SVGTextElement[JC] def after(nodes: Node | String*): Unit SVGTextElement[JC] def append(nodes: Node | String*): Unit SVGTextElement[JC] def appendChild(newChild: Node): Node SVGTextElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextElement[JC] def attributes: NamedNodeMap SVGTextElement[JC] def baseURI: String SVGTextElement[JC] def before(nodes: Node | String*): Unit SVGTextElement[JC] def childElementCount: Int @@ -24725,7 +24470,6 @@ SVGTextElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGTextElement[JC] def hasAttribute(name: String): Boolean SVGTextElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextElement[JC] def hasAttributes(): Boolean SVGTextElement[JC] def hasChildNodes(): Boolean SVGTextElement[JC] def hasExtension(extension: String): Boolean SVGTextElement[JC] var id: String @@ -24824,7 +24568,6 @@ SVGTextPathElement[JC] def after(nodes: Node | String*): Unit SVGTextPathElement[JC] def append(nodes: Node | String*): Unit SVGTextPathElement[JC] def appendChild(newChild: Node): Node SVGTextPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextPathElement[JC] def attributes: NamedNodeMap SVGTextPathElement[JC] def baseURI: String SVGTextPathElement[JC] def before(nodes: Node | String*): Unit SVGTextPathElement[JC] def childElementCount: Int @@ -24863,7 +24606,6 @@ SVGTextPathElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPathElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPathElement[JC] def hasAttribute(name: String): Boolean SVGTextPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextPathElement[JC] def hasAttributes(): Boolean SVGTextPathElement[JC] def hasChildNodes(): Boolean SVGTextPathElement[JC] def hasExtension(extension: String): Boolean SVGTextPathElement[JC] var href: SVGAnimatedString @@ -24967,7 +24709,6 @@ SVGTextPositioningElement[JC] def after(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def append(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def appendChild(newChild: Node): Node SVGTextPositioningElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextPositioningElement[JC] def attributes: NamedNodeMap SVGTextPositioningElement[JC] def baseURI: String SVGTextPositioningElement[JC] def before(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def childElementCount: Int @@ -25008,7 +24749,6 @@ SVGTextPositioningElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPositioningElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPositioningElement[JC] def hasAttribute(name: String): Boolean SVGTextPositioningElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextPositioningElement[JC] def hasAttributes(): Boolean SVGTextPositioningElement[JC] def hasChildNodes(): Boolean SVGTextPositioningElement[JC] def hasExtension(extension: String): Boolean SVGTextPositioningElement[JC] var id: String @@ -25105,7 +24845,6 @@ SVGTitleElement[JC] def after(nodes: Node | String*): Unit SVGTitleElement[JC] def append(nodes: Node | String*): Unit SVGTitleElement[JC] def appendChild(newChild: Node): Node SVGTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTitleElement[JC] def attributes: NamedNodeMap SVGTitleElement[JC] def baseURI: String SVGTitleElement[JC] def before(nodes: Node | String*): Unit SVGTitleElement[JC] def childElementCount: Int @@ -25135,7 +24874,6 @@ SVGTitleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGTitleElement[JC] def hasAttribute(name: String): Boolean SVGTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTitleElement[JC] def hasAttributes(): Boolean SVGTitleElement[JC] def hasChildNodes(): Boolean SVGTitleElement[JC] var id: String SVGTitleElement[JC] var innerHTML: String @@ -25263,7 +25001,6 @@ SVGUseElement[JC] def animatedInstanceRoot: SVGElementInstance SVGUseElement[JC] def append(nodes: Node | String*): Unit SVGUseElement[JC] def appendChild(newChild: Node): Node SVGUseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGUseElement[JC] def attributes: NamedNodeMap SVGUseElement[JC] def baseURI: String SVGUseElement[JC] def before(nodes: Node | String*): Unit SVGUseElement[JC] def childElementCount: Int @@ -25299,7 +25036,6 @@ SVGUseElement[JC] def getScreenCTM(): SVGMatrix SVGUseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGUseElement[JC] def hasAttribute(name: String): Boolean SVGUseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGUseElement[JC] def hasAttributes(): Boolean SVGUseElement[JC] def hasChildNodes(): Boolean SVGUseElement[JC] def hasExtension(extension: String): Boolean SVGUseElement[JC] def height: SVGAnimatedLength @@ -25398,7 +25134,6 @@ SVGViewElement[JC] def after(nodes: Node | String*): Unit SVGViewElement[JC] def append(nodes: Node | String*): Unit SVGViewElement[JC] def appendChild(newChild: Node): Node SVGViewElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGViewElement[JC] def attributes: NamedNodeMap SVGViewElement[JC] def baseURI: String SVGViewElement[JC] def before(nodes: Node | String*): Unit SVGViewElement[JC] def childElementCount: Int @@ -25428,7 +25163,6 @@ SVGViewElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGViewElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGViewElement[JC] def hasAttribute(name: String): Boolean SVGViewElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGViewElement[JC] def hasAttributes(): Boolean SVGViewElement[JC] def hasChildNodes(): Boolean SVGViewElement[JC] var id: String SVGViewElement[JC] var innerHTML: String @@ -25653,7 +25387,6 @@ ShadowRoot[JC] def activeElement: Element ShadowRoot[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit ShadowRoot[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit ShadowRoot[JC] def appendChild(newChild: Node): Node -ShadowRoot[JC] def attributes: NamedNodeMap ShadowRoot[JC] def baseURI: String ShadowRoot[JC] def childNodes: NodeList[Node] ShadowRoot[JC] def cloneNode(deep: Boolean?): Node @@ -25661,7 +25394,6 @@ ShadowRoot[JC] def compareDocumentPosition(other: Node): Int ShadowRoot[JC] def contains(otherNode: Node): Boolean ShadowRoot[JC] def dispatchEvent(evt: Event): Boolean ShadowRoot[JC] def firstChild: Node -ShadowRoot[JC] def hasAttributes(): Boolean ShadowRoot[JC] def hasChildNodes(): Boolean ShadowRoot[JC] var innerText: String ShadowRoot[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -25862,7 +25594,6 @@ Text[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1 Text[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Text[JC] def appendChild(newChild: Node): Node Text[JC] def appendData(arg: String): Unit -Text[JC] def attributes: NamedNodeMap Text[JC] def baseURI: String Text[JC] def childNodes: NodeList[Node] Text[JC] def cloneNode(deep: Boolean?): Node @@ -25872,7 +25603,6 @@ Text[JC] var data: String Text[JC] def deleteData(offset: Int, count: Int): Unit Text[JC] def dispatchEvent(evt: Event): Boolean Text[JC] def firstChild: Node -Text[JC] def hasAttributes(): Boolean Text[JC] def hasChildNodes(): Boolean Text[JC] var innerText: String Text[JC] def insertBefore(newChild: Node, refChild: Node): Node diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index ab04fbca0..5706c45d1 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -146,7 +146,6 @@ ApplicationCache[JT] def update(): Unit Attr[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit Attr[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Attr[JC] def appendChild(newChild: Node): Node -Attr[JC] def attributes: NamedNodeMap Attr[JC] def baseURI: String Attr[JC] def childNodes: NodeList[Node] Attr[JC] def cloneNode(deep: Boolean?): Node @@ -154,7 +153,6 @@ Attr[JC] def compareDocumentPosition(other: Node): Int Attr[JC] def contains(otherNode: Node): Boolean Attr[JC] def dispatchEvent(evt: Event): Boolean Attr[JC] def firstChild: Node -Attr[JC] def hasAttributes(): Boolean Attr[JC] def hasChildNodes(): Boolean Attr[JC] var innerText: String Attr[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -193,7 +191,6 @@ Audio[JC] def after(nodes: Node | String*): Unit Audio[JC] def append(nodes: Node | String*): Unit Audio[JC] def appendChild(newChild: Node): Node Audio[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -Audio[JC] def attributes: NamedNodeMap Audio[JC] def audioTracks: AudioTrackList Audio[JC] var autoplay: Boolean Audio[JC] def baseURI: String @@ -244,7 +241,6 @@ Audio[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Audio[JC] var gotpointercapture: js.Function1[PointerEvent, _] Audio[JC] def hasAttribute(name: String): Boolean Audio[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -Audio[JC] def hasAttributes(): Boolean Audio[JC] def hasChildNodes(): Boolean Audio[JC] var id: String Audio[JC] def initialTime: Double @@ -617,7 +613,6 @@ CDATASection[JC] def addEventListener[T <: Event](`type`: String, listener: js.F CDATASection[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit CDATASection[JC] def appendChild(newChild: Node): Node CDATASection[JC] def appendData(arg: String): Unit -CDATASection[JC] def attributes: NamedNodeMap CDATASection[JC] def baseURI: String CDATASection[JC] def childNodes: NodeList[Node] CDATASection[JC] def cloneNode(deep: Boolean?): Node @@ -627,7 +622,6 @@ CDATASection[JC] var data: String CDATASection[JC] def deleteData(offset: Int, count: Int): Unit CDATASection[JC] def dispatchEvent(evt: Event): Boolean CDATASection[JC] def firstChild: Node -CDATASection[JC] def hasAttributes(): Boolean CDATASection[JC] def hasChildNodes(): Boolean CDATASection[JC] var innerText: String CDATASection[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1170,7 +1164,6 @@ CharacterData[JC] def addEventListener[T <: Event](`type`: String, listener: js. CharacterData[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit CharacterData[JC] def appendChild(newChild: Node): Node CharacterData[JC] def appendData(arg: String): Unit -CharacterData[JC] def attributes: NamedNodeMap CharacterData[JC] def baseURI: String CharacterData[JC] def childNodes: NodeList[Node] CharacterData[JC] def cloneNode(deep: Boolean?): Node @@ -1180,7 +1173,6 @@ CharacterData[JC] var data: String CharacterData[JC] def deleteData(offset: Int, count: Int): Unit CharacterData[JC] def dispatchEvent(evt: Event): Boolean CharacterData[JC] def firstChild: Node -CharacterData[JC] def hasAttributes(): Boolean CharacterData[JC] def hasChildNodes(): Boolean CharacterData[JC] var innerText: String CharacterData[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1285,7 +1277,6 @@ Comment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Functi Comment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Comment[JC] def appendChild(newChild: Node): Node Comment[JC] def appendData(arg: String): Unit -Comment[JC] def attributes: NamedNodeMap Comment[JC] def baseURI: String Comment[JC] def childNodes: NodeList[Node] Comment[JC] def cloneNode(deep: Boolean?): Node @@ -1295,7 +1286,6 @@ Comment[JC] var data: String Comment[JC] def deleteData(offset: Int, count: Int): Unit Comment[JC] def dispatchEvent(evt: Event): Boolean Comment[JC] def firstChild: Node -Comment[JC] def hasAttributes(): Boolean Comment[JC] def hasChildNodes(): Boolean Comment[JC] var innerText: String Comment[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1718,7 +1708,6 @@ Document[JC] def addEventListener[T <: Event](`type`: String, listener: js.Funct Document[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Document[JC] def adoptNode(source: Node): Node Document[JC] def appendChild(newChild: Node): Node -Document[JC] def attributes: NamedNodeMap Document[JC] def baseURI: String Document[JC] def characterSet: String Document[JC] def childElementCount: Int @@ -1760,7 +1749,6 @@ Document[JC] def getElementsByClassName(classNames: String): HTMLCollection[Elem Document[JC] def getElementsByName(elementName: String): NodeList[Node] Document[JC] def getElementsByTagName(name: String): HTMLCollection[Element] Document[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] -Document[JC] def hasAttributes(): Boolean Document[JC] def hasChildNodes(): Boolean Document[JC] def hidden: Boolean Document[JC] def implementation: DOMImplementation @@ -1807,7 +1795,6 @@ DocumentEvent[JT] def createEvent(eventInterface: String): Event DocumentFragment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit DocumentFragment[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit DocumentFragment[JC] def appendChild(newChild: Node): Node -DocumentFragment[JC] def attributes: NamedNodeMap DocumentFragment[JC] def baseURI: String DocumentFragment[JC] def childNodes: NodeList[Node] DocumentFragment[JC] def cloneNode(deep: Boolean?): Node @@ -1815,7 +1802,6 @@ DocumentFragment[JC] def compareDocumentPosition(other: Node): Int DocumentFragment[JC] def contains(otherNode: Node): Boolean DocumentFragment[JC] def dispatchEvent(evt: Event): Boolean DocumentFragment[JC] def firstChild: Node -DocumentFragment[JC] def hasAttributes(): Boolean DocumentFragment[JC] def hasChildNodes(): Boolean DocumentFragment[JC] var innerText: String DocumentFragment[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1851,7 +1837,6 @@ DocumentReadyState[SO] val loading: DocumentReadyState DocumentType[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit DocumentType[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit DocumentType[JC] def appendChild(newChild: Node): Node -DocumentType[JC] def attributes: NamedNodeMap DocumentType[JC] def baseURI: String DocumentType[JC] def childNodes: NodeList[Node] DocumentType[JC] def cloneNode(deep: Boolean?): Node @@ -1859,7 +1844,6 @@ DocumentType[JC] def compareDocumentPosition(other: Node): Int DocumentType[JC] def contains(otherNode: Node): Boolean DocumentType[JC] def dispatchEvent(evt: Event): Boolean DocumentType[JC] def firstChild: Node -DocumentType[JC] def hasAttributes(): Boolean DocumentType[JC] def hasChildNodes(): Boolean DocumentType[JC] var innerText: String DocumentType[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -1985,7 +1969,6 @@ Element[JC] def after(nodes: Node | String*): Unit Element[JC] def append(nodes: Node | String*): Unit Element[JC] def appendChild(newChild: Node): Node Element[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -Element[JC] def attributes: NamedNodeMap Element[JC] def baseURI: String Element[JC] def before(nodes: Node | String*): Unit Element[JC] def childElementCount: Int @@ -2014,7 +1997,6 @@ Element[JC] def getElementsByTagName(name: String): HTMLCollection[Element] Element[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] Element[JC] def hasAttribute(name: String): Boolean Element[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -Element[JC] def hasAttributes(): Boolean Element[JC] def hasChildNodes(): Boolean Element[JC] var id: String Element[JC] var innerHTML: String @@ -2367,7 +2349,6 @@ HTMLAnchorElement[JC] def after(nodes: Node | String*): Unit HTMLAnchorElement[JC] def append(nodes: Node | String*): Unit HTMLAnchorElement[JC] def appendChild(newChild: Node): Node HTMLAnchorElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLAnchorElement[JC] def attributes: NamedNodeMap HTMLAnchorElement[JC] def baseURI: String HTMLAnchorElement[JC] def before(nodes: Node | String*): Unit HTMLAnchorElement[JC] def blur(): Unit @@ -2408,7 +2389,6 @@ HTMLAnchorElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLAnchorElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAnchorElement[JC] def hasAttribute(name: String): Boolean HTMLAnchorElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLAnchorElement[JC] def hasAttributes(): Boolean HTMLAnchorElement[JC] def hasChildNodes(): Boolean HTMLAnchorElement[JC] var hash: String HTMLAnchorElement[JC] var host: String @@ -2584,7 +2564,6 @@ HTMLAreaElement[JC] var alt: String HTMLAreaElement[JC] def append(nodes: Node | String*): Unit HTMLAreaElement[JC] def appendChild(newChild: Node): Node HTMLAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLAreaElement[JC] def attributes: NamedNodeMap HTMLAreaElement[JC] def baseURI: String HTMLAreaElement[JC] def before(nodes: Node | String*): Unit HTMLAreaElement[JC] def blur(): Unit @@ -2625,7 +2604,6 @@ HTMLAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAreaElement[JC] def hasAttribute(name: String): Boolean HTMLAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLAreaElement[JC] def hasAttributes(): Boolean HTMLAreaElement[JC] def hasChildNodes(): Boolean HTMLAreaElement[JC] var hash: String HTMLAreaElement[JC] var host: String @@ -2796,7 +2774,6 @@ HTMLAudioElement[JC] def after(nodes: Node | String*): Unit HTMLAudioElement[JC] def append(nodes: Node | String*): Unit HTMLAudioElement[JC] def appendChild(newChild: Node): Node HTMLAudioElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLAudioElement[JC] def attributes: NamedNodeMap HTMLAudioElement[JC] def audioTracks: AudioTrackList HTMLAudioElement[JC] var autoplay: Boolean HTMLAudioElement[JC] def baseURI: String @@ -2847,7 +2824,6 @@ HTMLAudioElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAudioElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAudioElement[JC] def hasAttribute(name: String): Boolean HTMLAudioElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLAudioElement[JC] def hasAttributes(): Boolean HTMLAudioElement[JC] def hasChildNodes(): Boolean HTMLAudioElement[JC] var id: String HTMLAudioElement[JC] def initialTime: Double @@ -3025,7 +3001,6 @@ HTMLBRElement[JC] def after(nodes: Node | String*): Unit HTMLBRElement[JC] def append(nodes: Node | String*): Unit HTMLBRElement[JC] def appendChild(newChild: Node): Node HTMLBRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLBRElement[JC] def attributes: NamedNodeMap HTMLBRElement[JC] def baseURI: String HTMLBRElement[JC] def before(nodes: Node | String*): Unit HTMLBRElement[JC] def blur(): Unit @@ -3065,7 +3040,6 @@ HTMLBRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLBRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBRElement[JC] def hasAttribute(name: String): Boolean HTMLBRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLBRElement[JC] def hasAttributes(): Boolean HTMLBRElement[JC] def hasChildNodes(): Boolean HTMLBRElement[JC] var id: String HTMLBRElement[JC] var innerHTML: String @@ -3226,7 +3200,6 @@ HTMLBaseElement[JC] def after(nodes: Node | String*): Unit HTMLBaseElement[JC] def append(nodes: Node | String*): Unit HTMLBaseElement[JC] def appendChild(newChild: Node): Node HTMLBaseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLBaseElement[JC] def attributes: NamedNodeMap HTMLBaseElement[JC] def baseURI: String HTMLBaseElement[JC] def before(nodes: Node | String*): Unit HTMLBaseElement[JC] def blur(): Unit @@ -3266,7 +3239,6 @@ HTMLBaseElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBaseElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBaseElement[JC] def hasAttribute(name: String): Boolean HTMLBaseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLBaseElement[JC] def hasAttributes(): Boolean HTMLBaseElement[JC] def hasChildNodes(): Boolean HTMLBaseElement[JC] var href: String HTMLBaseElement[JC] var id: String @@ -3429,7 +3401,6 @@ HTMLBodyElement[JC] def after(nodes: Node | String*): Unit HTMLBodyElement[JC] def append(nodes: Node | String*): Unit HTMLBodyElement[JC] def appendChild(newChild: Node): Node HTMLBodyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLBodyElement[JC] def attributes: NamedNodeMap HTMLBodyElement[JC] def baseURI: String HTMLBodyElement[JC] def before(nodes: Node | String*): Unit HTMLBodyElement[JC] def blur(): Unit @@ -3469,7 +3440,6 @@ HTMLBodyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBodyElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBodyElement[JC] def hasAttribute(name: String): Boolean HTMLBodyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLBodyElement[JC] def hasAttributes(): Boolean HTMLBodyElement[JC] def hasChildNodes(): Boolean HTMLBodyElement[JC] var id: String HTMLBodyElement[JC] var innerHTML: String @@ -3644,7 +3614,6 @@ HTMLButtonElement[JC] def after(nodes: Node | String*): Unit HTMLButtonElement[JC] def append(nodes: Node | String*): Unit HTMLButtonElement[JC] def appendChild(newChild: Node): Node HTMLButtonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLButtonElement[JC] def attributes: NamedNodeMap HTMLButtonElement[JC] var autofocus: Boolean HTMLButtonElement[JC] def baseURI: String HTMLButtonElement[JC] def before(nodes: Node | String*): Unit @@ -3693,7 +3662,6 @@ HTMLButtonElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLButtonElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLButtonElement[JC] def hasAttribute(name: String): Boolean HTMLButtonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLButtonElement[JC] def hasAttributes(): Boolean HTMLButtonElement[JC] def hasChildNodes(): Boolean HTMLButtonElement[JC] var id: String HTMLButtonElement[JC] var innerHTML: String @@ -3863,7 +3831,6 @@ HTMLCanvasElement[JC] def after(nodes: Node | String*): Unit HTMLCanvasElement[JC] def append(nodes: Node | String*): Unit HTMLCanvasElement[JC] def appendChild(newChild: Node): Node HTMLCanvasElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLCanvasElement[JC] def attributes: NamedNodeMap HTMLCanvasElement[JC] def baseURI: String HTMLCanvasElement[JC] def before(nodes: Node | String*): Unit HTMLCanvasElement[JC] def blur(): Unit @@ -3904,7 +3871,6 @@ HTMLCanvasElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLCanvasElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLCanvasElement[JC] def hasAttribute(name: String): Boolean HTMLCanvasElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLCanvasElement[JC] def hasAttributes(): Boolean HTMLCanvasElement[JC] def hasChildNodes(): Boolean HTMLCanvasElement[JC] var height: Int HTMLCanvasElement[JC] var id: String @@ -4072,7 +4038,6 @@ HTMLDListElement[JC] def after(nodes: Node | String*): Unit HTMLDListElement[JC] def append(nodes: Node | String*): Unit HTMLDListElement[JC] def appendChild(newChild: Node): Node HTMLDListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDListElement[JC] def attributes: NamedNodeMap HTMLDListElement[JC] def baseURI: String HTMLDListElement[JC] def before(nodes: Node | String*): Unit HTMLDListElement[JC] def blur(): Unit @@ -4112,7 +4077,6 @@ HTMLDListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLDListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDListElement[JC] def hasAttribute(name: String): Boolean HTMLDListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDListElement[JC] def hasAttributes(): Boolean HTMLDListElement[JC] def hasChildNodes(): Boolean HTMLDListElement[JC] var id: String HTMLDListElement[JC] var innerHTML: String @@ -4273,7 +4237,6 @@ HTMLDataListElement[JC] def after(nodes: Node | String*): Unit HTMLDataListElement[JC] def append(nodes: Node | String*): Unit HTMLDataListElement[JC] def appendChild(newChild: Node): Node HTMLDataListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDataListElement[JC] def attributes: NamedNodeMap HTMLDataListElement[JC] def baseURI: String HTMLDataListElement[JC] def before(nodes: Node | String*): Unit HTMLDataListElement[JC] def blur(): Unit @@ -4313,7 +4276,6 @@ HTMLDataListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLDataListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDataListElement[JC] def hasAttribute(name: String): Boolean HTMLDataListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDataListElement[JC] def hasAttributes(): Boolean HTMLDataListElement[JC] def hasChildNodes(): Boolean HTMLDataListElement[JC] var id: String HTMLDataListElement[JC] var innerHTML: String @@ -4475,7 +4437,6 @@ HTMLDialogElement[JC] def after(nodes: Node | String*): Unit HTMLDialogElement[JC] def append(nodes: Node | String*): Unit HTMLDialogElement[JC] def appendChild(newChild: Node): Node HTMLDialogElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDialogElement[JC] def attributes: NamedNodeMap HTMLDialogElement[JC] def baseURI: String HTMLDialogElement[JC] def before(nodes: Node | String*): Unit HTMLDialogElement[JC] def blur(): Unit @@ -4516,7 +4477,6 @@ HTMLDialogElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLDialogElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDialogElement[JC] def hasAttribute(name: String): Boolean HTMLDialogElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDialogElement[JC] def hasAttributes(): Boolean HTMLDialogElement[JC] def hasChildNodes(): Boolean HTMLDialogElement[JC] var id: String HTMLDialogElement[JC] var innerHTML: String @@ -4681,7 +4641,6 @@ HTMLDivElement[JC] def after(nodes: Node | String*): Unit HTMLDivElement[JC] def append(nodes: Node | String*): Unit HTMLDivElement[JC] def appendChild(newChild: Node): Node HTMLDivElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLDivElement[JC] def attributes: NamedNodeMap HTMLDivElement[JC] def baseURI: String HTMLDivElement[JC] def before(nodes: Node | String*): Unit HTMLDivElement[JC] def blur(): Unit @@ -4721,7 +4680,6 @@ HTMLDivElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLDivElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDivElement[JC] def hasAttribute(name: String): Boolean HTMLDivElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLDivElement[JC] def hasAttributes(): Boolean HTMLDivElement[JC] def hasChildNodes(): Boolean HTMLDivElement[JC] var id: String HTMLDivElement[JC] var innerHTML: String @@ -4882,7 +4840,6 @@ HTMLDocument[JC] def addEventListener[T <: Event](`type`: String, listener: js.F HTMLDocument[JC] def adoptNode(source: Node): Node HTMLDocument[JC] def anchors: HTMLCollection[Element] HTMLDocument[JC] def appendChild(newChild: Node): Node -HTMLDocument[JC] def attributes: NamedNodeMap HTMLDocument[JC] def baseURI: String HTMLDocument[JC] var body: HTMLElement HTMLDocument[JC] def characterSet: String @@ -4940,7 +4897,6 @@ HTMLDocument[JC] def getElementsByTagName(name: String): HTMLCollection[Element] HTMLDocument[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] HTMLDocument[JC] def getSelection(): Selection HTMLDocument[JC] var gotpointercapture: js.Function1[PointerEvent, _] -HTMLDocument[JC] def hasAttributes(): Boolean HTMLDocument[JC] def hasChildNodes(): Boolean HTMLDocument[JC] def hasFocus(): Boolean HTMLDocument[JC] def head: HTMLHeadElement @@ -5082,7 +5038,6 @@ HTMLElement[JC] def after(nodes: Node | String*): Unit HTMLElement[JC] def append(nodes: Node | String*): Unit HTMLElement[JC] def appendChild(newChild: Node): Node HTMLElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLElement[JC] def attributes: NamedNodeMap HTMLElement[JC] def baseURI: String HTMLElement[JC] def before(nodes: Node | String*): Unit HTMLElement[JC] def blur(): Unit @@ -5122,7 +5077,6 @@ HTMLElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: Stri HTMLElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLElement[JC] def hasAttribute(name: String): Boolean HTMLElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLElement[JC] def hasAttributes(): Boolean HTMLElement[JC] def hasChildNodes(): Boolean HTMLElement[JC] var id: String HTMLElement[JC] var innerHTML: String @@ -5283,7 +5237,6 @@ HTMLEmbedElement[JC] def after(nodes: Node | String*): Unit HTMLEmbedElement[JC] def append(nodes: Node | String*): Unit HTMLEmbedElement[JC] def appendChild(newChild: Node): Node HTMLEmbedElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLEmbedElement[JC] def attributes: NamedNodeMap HTMLEmbedElement[JC] def baseURI: String HTMLEmbedElement[JC] def before(nodes: Node | String*): Unit HTMLEmbedElement[JC] def blur(): Unit @@ -5324,7 +5277,6 @@ HTMLEmbedElement[JC] def getSVGDocument(): Document HTMLEmbedElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLEmbedElement[JC] def hasAttribute(name: String): Boolean HTMLEmbedElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLEmbedElement[JC] def hasAttributes(): Boolean HTMLEmbedElement[JC] def hasChildNodes(): Boolean HTMLEmbedElement[JC] var height: String HTMLEmbedElement[JC] var id: String @@ -5488,7 +5440,6 @@ HTMLFieldSetElement[JC] def after(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def append(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def appendChild(newChild: Node): Node HTMLFieldSetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLFieldSetElement[JC] def attributes: NamedNodeMap HTMLFieldSetElement[JC] def baseURI: String HTMLFieldSetElement[JC] def before(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def blur(): Unit @@ -5531,7 +5482,6 @@ HTMLFieldSetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLFieldSetElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFieldSetElement[JC] def hasAttribute(name: String): Boolean HTMLFieldSetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLFieldSetElement[JC] def hasAttributes(): Boolean HTMLFieldSetElement[JC] def hasChildNodes(): Boolean HTMLFieldSetElement[JC] var id: String HTMLFieldSetElement[JC] var innerHTML: String @@ -5704,7 +5654,6 @@ HTMLFormElement[JC] def append(nodes: Node | String*): Unit HTMLFormElement[JC] def appendChild(newChild: Node): Node HTMLFormElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLFormElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLFormElement[JC] def attributes: NamedNodeMap HTMLFormElement[JC] var autocomplete: String HTMLFormElement[JC] def baseURI: String HTMLFormElement[JC] def before(nodes: Node | String*): Unit @@ -5749,7 +5698,6 @@ HTMLFormElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLFormElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFormElement[JC] def hasAttribute(name: String): Boolean HTMLFormElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLFormElement[JC] def hasAttributes(): Boolean HTMLFormElement[JC] def hasChildNodes(): Boolean HTMLFormElement[JC] var id: String HTMLFormElement[JC] var innerHTML: String @@ -5921,7 +5869,6 @@ HTMLHRElement[JC] def after(nodes: Node | String*): Unit HTMLHRElement[JC] def append(nodes: Node | String*): Unit HTMLHRElement[JC] def appendChild(newChild: Node): Node HTMLHRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHRElement[JC] def attributes: NamedNodeMap HTMLHRElement[JC] def baseURI: String HTMLHRElement[JC] def before(nodes: Node | String*): Unit HTMLHRElement[JC] def blur(): Unit @@ -5961,7 +5908,6 @@ HTMLHRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLHRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHRElement[JC] def hasAttribute(name: String): Boolean HTMLHRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHRElement[JC] def hasAttributes(): Boolean HTMLHRElement[JC] def hasChildNodes(): Boolean HTMLHRElement[JC] var id: String HTMLHRElement[JC] var innerHTML: String @@ -6122,7 +6068,6 @@ HTMLHeadElement[JC] def after(nodes: Node | String*): Unit HTMLHeadElement[JC] def append(nodes: Node | String*): Unit HTMLHeadElement[JC] def appendChild(newChild: Node): Node HTMLHeadElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHeadElement[JC] def attributes: NamedNodeMap HTMLHeadElement[JC] def baseURI: String HTMLHeadElement[JC] def before(nodes: Node | String*): Unit HTMLHeadElement[JC] def blur(): Unit @@ -6162,7 +6107,6 @@ HTMLHeadElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHeadElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadElement[JC] def hasAttribute(name: String): Boolean HTMLHeadElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHeadElement[JC] def hasAttributes(): Boolean HTMLHeadElement[JC] def hasChildNodes(): Boolean HTMLHeadElement[JC] var id: String HTMLHeadElement[JC] var innerHTML: String @@ -6323,7 +6267,6 @@ HTMLHeadingElement[JC] def after(nodes: Node | String*): Unit HTMLHeadingElement[JC] def append(nodes: Node | String*): Unit HTMLHeadingElement[JC] def appendChild(newChild: Node): Node HTMLHeadingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHeadingElement[JC] def attributes: NamedNodeMap HTMLHeadingElement[JC] def baseURI: String HTMLHeadingElement[JC] def before(nodes: Node | String*): Unit HTMLHeadingElement[JC] def blur(): Unit @@ -6363,7 +6306,6 @@ HTMLHeadingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLHeadingElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadingElement[JC] def hasAttribute(name: String): Boolean HTMLHeadingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHeadingElement[JC] def hasAttributes(): Boolean HTMLHeadingElement[JC] def hasChildNodes(): Boolean HTMLHeadingElement[JC] var id: String HTMLHeadingElement[JC] var innerHTML: String @@ -6524,7 +6466,6 @@ HTMLHtmlElement[JC] def after(nodes: Node | String*): Unit HTMLHtmlElement[JC] def append(nodes: Node | String*): Unit HTMLHtmlElement[JC] def appendChild(newChild: Node): Node HTMLHtmlElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLHtmlElement[JC] def attributes: NamedNodeMap HTMLHtmlElement[JC] def baseURI: String HTMLHtmlElement[JC] def before(nodes: Node | String*): Unit HTMLHtmlElement[JC] def blur(): Unit @@ -6564,7 +6505,6 @@ HTMLHtmlElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHtmlElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHtmlElement[JC] def hasAttribute(name: String): Boolean HTMLHtmlElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLHtmlElement[JC] def hasAttributes(): Boolean HTMLHtmlElement[JC] def hasChildNodes(): Boolean HTMLHtmlElement[JC] var id: String HTMLHtmlElement[JC] var innerHTML: String @@ -6725,7 +6665,6 @@ HTMLIFrameElement[JC] def after(nodes: Node | String*): Unit HTMLIFrameElement[JC] def append(nodes: Node | String*): Unit HTMLIFrameElement[JC] def appendChild(newChild: Node): Node HTMLIFrameElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLIFrameElement[JC] def attributes: NamedNodeMap HTMLIFrameElement[JC] def baseURI: String HTMLIFrameElement[JC] def before(nodes: Node | String*): Unit HTMLIFrameElement[JC] def blur(): Unit @@ -6769,7 +6708,6 @@ HTMLIFrameElement[JC] def getSVGDocument(): Document HTMLIFrameElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLIFrameElement[JC] def hasAttribute(name: String): Boolean HTMLIFrameElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLIFrameElement[JC] def hasAttributes(): Boolean HTMLIFrameElement[JC] def hasChildNodes(): Boolean HTMLIFrameElement[JC] var height: String HTMLIFrameElement[JC] var id: String @@ -6938,7 +6876,6 @@ HTMLImageElement[JC] var alt: String HTMLImageElement[JC] def append(nodes: Node | String*): Unit HTMLImageElement[JC] def appendChild(newChild: Node): Node HTMLImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLImageElement[JC] def attributes: NamedNodeMap HTMLImageElement[JC] def baseURI: String HTMLImageElement[JC] def before(nodes: Node | String*): Unit HTMLImageElement[JC] def blur(): Unit @@ -6980,7 +6917,6 @@ HTMLImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLImageElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLImageElement[JC] def hasAttribute(name: String): Boolean HTMLImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLImageElement[JC] def hasAttributes(): Boolean HTMLImageElement[JC] def hasChildNodes(): Boolean HTMLImageElement[JC] var height: Int HTMLImageElement[JC] var href: String @@ -7157,7 +7093,6 @@ HTMLInputElement[JC] var alt: String HTMLInputElement[JC] def append(nodes: Node | String*): Unit HTMLInputElement[JC] def appendChild(newChild: Node): Node HTMLInputElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLInputElement[JC] def attributes: NamedNodeMap HTMLInputElement[JC] var autocomplete: String HTMLInputElement[JC] var autofocus: Boolean HTMLInputElement[JC] def baseURI: String @@ -7211,7 +7146,6 @@ HTMLInputElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLInputElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLInputElement[JC] def hasAttribute(name: String): Boolean HTMLInputElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLInputElement[JC] def hasAttributes(): Boolean HTMLInputElement[JC] def hasChildNodes(): Boolean HTMLInputElement[JC] var height: String HTMLInputElement[JC] var id: String @@ -7403,7 +7337,6 @@ HTMLLIElement[JC] def after(nodes: Node | String*): Unit HTMLLIElement[JC] def append(nodes: Node | String*): Unit HTMLLIElement[JC] def appendChild(newChild: Node): Node HTMLLIElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLIElement[JC] def attributes: NamedNodeMap HTMLLIElement[JC] def baseURI: String HTMLLIElement[JC] def before(nodes: Node | String*): Unit HTMLLIElement[JC] def blur(): Unit @@ -7443,7 +7376,6 @@ HTMLLIElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLLIElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLIElement[JC] def hasAttribute(name: String): Boolean HTMLLIElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLIElement[JC] def hasAttributes(): Boolean HTMLLIElement[JC] def hasChildNodes(): Boolean HTMLLIElement[JC] var id: String HTMLLIElement[JC] var innerHTML: String @@ -7605,7 +7537,6 @@ HTMLLabelElement[JC] def after(nodes: Node | String*): Unit HTMLLabelElement[JC] def append(nodes: Node | String*): Unit HTMLLabelElement[JC] def appendChild(newChild: Node): Node HTMLLabelElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLabelElement[JC] def attributes: NamedNodeMap HTMLLabelElement[JC] def baseURI: String HTMLLabelElement[JC] def before(nodes: Node | String*): Unit HTMLLabelElement[JC] def blur(): Unit @@ -7646,7 +7577,6 @@ HTMLLabelElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLabelElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLabelElement[JC] def hasAttribute(name: String): Boolean HTMLLabelElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLabelElement[JC] def hasAttributes(): Boolean HTMLLabelElement[JC] def hasChildNodes(): Boolean HTMLLabelElement[JC] var htmlFor: String HTMLLabelElement[JC] var id: String @@ -7809,7 +7739,6 @@ HTMLLegendElement[JC] var align: String HTMLLegendElement[JC] def append(nodes: Node | String*): Unit HTMLLegendElement[JC] def appendChild(newChild: Node): Node HTMLLegendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLegendElement[JC] def attributes: NamedNodeMap HTMLLegendElement[JC] def baseURI: String HTMLLegendElement[JC] def before(nodes: Node | String*): Unit HTMLLegendElement[JC] def blur(): Unit @@ -7850,7 +7779,6 @@ HTMLLegendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLLegendElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLegendElement[JC] def hasAttribute(name: String): Boolean HTMLLegendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLegendElement[JC] def hasAttributes(): Boolean HTMLLegendElement[JC] def hasChildNodes(): Boolean HTMLLegendElement[JC] var id: String HTMLLegendElement[JC] var innerHTML: String @@ -8011,7 +7939,6 @@ HTMLLinkElement[JC] def after(nodes: Node | String*): Unit HTMLLinkElement[JC] def append(nodes: Node | String*): Unit HTMLLinkElement[JC] def appendChild(newChild: Node): Node HTMLLinkElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLLinkElement[JC] def attributes: NamedNodeMap HTMLLinkElement[JC] def baseURI: String HTMLLinkElement[JC] def before(nodes: Node | String*): Unit HTMLLinkElement[JC] def blur(): Unit @@ -8051,7 +7978,6 @@ HTMLLinkElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLinkElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLinkElement[JC] def hasAttribute(name: String): Boolean HTMLLinkElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLLinkElement[JC] def hasAttributes(): Boolean HTMLLinkElement[JC] def hasChildNodes(): Boolean HTMLLinkElement[JC] var href: String HTMLLinkElement[JC] var hreflang: String @@ -8220,7 +8146,6 @@ HTMLMapElement[JC] def after(nodes: Node | String*): Unit HTMLMapElement[JC] def append(nodes: Node | String*): Unit HTMLMapElement[JC] def appendChild(newChild: Node): Node HTMLMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMapElement[JC] def attributes: NamedNodeMap HTMLMapElement[JC] def baseURI: String HTMLMapElement[JC] def before(nodes: Node | String*): Unit HTMLMapElement[JC] def blur(): Unit @@ -8260,7 +8185,6 @@ HTMLMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLMapElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMapElement[JC] def hasAttribute(name: String): Boolean HTMLMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMapElement[JC] def hasAttributes(): Boolean HTMLMapElement[JC] def hasChildNodes(): Boolean HTMLMapElement[JC] var id: String HTMLMapElement[JC] var innerHTML: String @@ -8422,7 +8346,6 @@ HTMLMediaElement[JC] def after(nodes: Node | String*): Unit HTMLMediaElement[JC] def append(nodes: Node | String*): Unit HTMLMediaElement[JC] def appendChild(newChild: Node): Node HTMLMediaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMediaElement[JC] def attributes: NamedNodeMap HTMLMediaElement[JC] def audioTracks: AudioTrackList HTMLMediaElement[JC] var autoplay: Boolean HTMLMediaElement[JC] def baseURI: String @@ -8473,7 +8396,6 @@ HTMLMediaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMediaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMediaElement[JC] def hasAttribute(name: String): Boolean HTMLMediaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMediaElement[JC] def hasAttributes(): Boolean HTMLMediaElement[JC] def hasChildNodes(): Boolean HTMLMediaElement[JC] var id: String HTMLMediaElement[JC] def initialTime: Double @@ -8660,7 +8582,6 @@ HTMLMenuElement[JC] def after(nodes: Node | String*): Unit HTMLMenuElement[JC] def append(nodes: Node | String*): Unit HTMLMenuElement[JC] def appendChild(newChild: Node): Node HTMLMenuElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMenuElement[JC] def attributes: NamedNodeMap HTMLMenuElement[JC] def baseURI: String HTMLMenuElement[JC] def before(nodes: Node | String*): Unit HTMLMenuElement[JC] def blur(): Unit @@ -8700,7 +8621,6 @@ HTMLMenuElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMenuElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMenuElement[JC] def hasAttribute(name: String): Boolean HTMLMenuElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMenuElement[JC] def hasAttributes(): Boolean HTMLMenuElement[JC] def hasChildNodes(): Boolean HTMLMenuElement[JC] var id: String HTMLMenuElement[JC] var innerHTML: String @@ -8862,7 +8782,6 @@ HTMLMetaElement[JC] def after(nodes: Node | String*): Unit HTMLMetaElement[JC] def append(nodes: Node | String*): Unit HTMLMetaElement[JC] def appendChild(newChild: Node): Node HTMLMetaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLMetaElement[JC] def attributes: NamedNodeMap HTMLMetaElement[JC] def baseURI: String HTMLMetaElement[JC] def before(nodes: Node | String*): Unit HTMLMetaElement[JC] def blur(): Unit @@ -8904,7 +8823,6 @@ HTMLMetaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMetaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMetaElement[JC] def hasAttribute(name: String): Boolean HTMLMetaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLMetaElement[JC] def hasAttributes(): Boolean HTMLMetaElement[JC] def hasChildNodes(): Boolean HTMLMetaElement[JC] var httpEquiv: String HTMLMetaElement[JC] var id: String @@ -9068,7 +8986,6 @@ HTMLModElement[JC] def after(nodes: Node | String*): Unit HTMLModElement[JC] def append(nodes: Node | String*): Unit HTMLModElement[JC] def appendChild(newChild: Node): Node HTMLModElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLModElement[JC] def attributes: NamedNodeMap HTMLModElement[JC] def baseURI: String HTMLModElement[JC] def before(nodes: Node | String*): Unit HTMLModElement[JC] def blur(): Unit @@ -9110,7 +9027,6 @@ HTMLModElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLModElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLModElement[JC] def hasAttribute(name: String): Boolean HTMLModElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLModElement[JC] def hasAttributes(): Boolean HTMLModElement[JC] def hasChildNodes(): Boolean HTMLModElement[JC] var id: String HTMLModElement[JC] var innerHTML: String @@ -9271,7 +9187,6 @@ HTMLOListElement[JC] def after(nodes: Node | String*): Unit HTMLOListElement[JC] def append(nodes: Node | String*): Unit HTMLOListElement[JC] def appendChild(newChild: Node): Node HTMLOListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLOListElement[JC] def attributes: NamedNodeMap HTMLOListElement[JC] def baseURI: String HTMLOListElement[JC] def before(nodes: Node | String*): Unit HTMLOListElement[JC] def blur(): Unit @@ -9311,7 +9226,6 @@ HTMLOListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLOListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOListElement[JC] def hasAttribute(name: String): Boolean HTMLOListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLOListElement[JC] def hasAttributes(): Boolean HTMLOListElement[JC] def hasChildNodes(): Boolean HTMLOListElement[JC] var id: String HTMLOListElement[JC] var innerHTML: String @@ -9476,7 +9390,6 @@ HTMLObjectElement[JC] var altHtml: String HTMLObjectElement[JC] def append(nodes: Node | String*): Unit HTMLObjectElement[JC] def appendChild(newChild: Node): Node HTMLObjectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLObjectElement[JC] def attributes: NamedNodeMap HTMLObjectElement[JC] def baseURI: String HTMLObjectElement[JC] def before(nodes: Node | String*): Unit HTMLObjectElement[JC] def blur(): Unit @@ -9522,7 +9435,6 @@ HTMLObjectElement[JC] def getSVGDocument(): Document HTMLObjectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLObjectElement[JC] def hasAttribute(name: String): Boolean HTMLObjectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLObjectElement[JC] def hasAttributes(): Boolean HTMLObjectElement[JC] def hasChildNodes(): Boolean HTMLObjectElement[JC] var height: String HTMLObjectElement[JC] var id: String @@ -9694,7 +9606,6 @@ HTMLOptGroupElement[JC] def after(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def append(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def appendChild(newChild: Node): Node HTMLOptGroupElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLOptGroupElement[JC] def attributes: NamedNodeMap HTMLOptGroupElement[JC] def baseURI: String HTMLOptGroupElement[JC] def before(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def blur(): Unit @@ -9735,7 +9646,6 @@ HTMLOptGroupElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLOptGroupElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptGroupElement[JC] def hasAttribute(name: String): Boolean HTMLOptGroupElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLOptGroupElement[JC] def hasAttributes(): Boolean HTMLOptGroupElement[JC] def hasChildNodes(): Boolean HTMLOptGroupElement[JC] var id: String HTMLOptGroupElement[JC] var innerHTML: String @@ -9897,7 +9807,6 @@ HTMLOptionElement[JC] def after(nodes: Node | String*): Unit HTMLOptionElement[JC] def append(nodes: Node | String*): Unit HTMLOptionElement[JC] def appendChild(newChild: Node): Node HTMLOptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLOptionElement[JC] def attributes: NamedNodeMap HTMLOptionElement[JC] def baseURI: String HTMLOptionElement[JC] def before(nodes: Node | String*): Unit HTMLOptionElement[JC] def blur(): Unit @@ -9941,7 +9850,6 @@ HTMLOptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLOptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptionElement[JC] def hasAttribute(name: String): Boolean HTMLOptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLOptionElement[JC] def hasAttributes(): Boolean HTMLOptionElement[JC] def hasChildNodes(): Boolean HTMLOptionElement[JC] var id: String HTMLOptionElement[JC] def index: Int @@ -10111,7 +10019,6 @@ HTMLParagraphElement[JC] def after(nodes: Node | String*): Unit HTMLParagraphElement[JC] def append(nodes: Node | String*): Unit HTMLParagraphElement[JC] def appendChild(newChild: Node): Node HTMLParagraphElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLParagraphElement[JC] def attributes: NamedNodeMap HTMLParagraphElement[JC] def baseURI: String HTMLParagraphElement[JC] def before(nodes: Node | String*): Unit HTMLParagraphElement[JC] def blur(): Unit @@ -10151,7 +10058,6 @@ HTMLParagraphElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLParagraphElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParagraphElement[JC] def hasAttribute(name: String): Boolean HTMLParagraphElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLParagraphElement[JC] def hasAttributes(): Boolean HTMLParagraphElement[JC] def hasChildNodes(): Boolean HTMLParagraphElement[JC] var id: String HTMLParagraphElement[JC] var innerHTML: String @@ -10312,7 +10218,6 @@ HTMLParamElement[JC] def after(nodes: Node | String*): Unit HTMLParamElement[JC] def append(nodes: Node | String*): Unit HTMLParamElement[JC] def appendChild(newChild: Node): Node HTMLParamElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLParamElement[JC] def attributes: NamedNodeMap HTMLParamElement[JC] def baseURI: String HTMLParamElement[JC] def before(nodes: Node | String*): Unit HTMLParamElement[JC] def blur(): Unit @@ -10352,7 +10257,6 @@ HTMLParamElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLParamElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParamElement[JC] def hasAttribute(name: String): Boolean HTMLParamElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLParamElement[JC] def hasAttributes(): Boolean HTMLParamElement[JC] def hasChildNodes(): Boolean HTMLParamElement[JC] var id: String HTMLParamElement[JC] var innerHTML: String @@ -10515,7 +10419,6 @@ HTMLPreElement[JC] def after(nodes: Node | String*): Unit HTMLPreElement[JC] def append(nodes: Node | String*): Unit HTMLPreElement[JC] def appendChild(newChild: Node): Node HTMLPreElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLPreElement[JC] def attributes: NamedNodeMap HTMLPreElement[JC] def baseURI: String HTMLPreElement[JC] def before(nodes: Node | String*): Unit HTMLPreElement[JC] def blur(): Unit @@ -10555,7 +10458,6 @@ HTMLPreElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLPreElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLPreElement[JC] def hasAttribute(name: String): Boolean HTMLPreElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLPreElement[JC] def hasAttributes(): Boolean HTMLPreElement[JC] def hasChildNodes(): Boolean HTMLPreElement[JC] var id: String HTMLPreElement[JC] var innerHTML: String @@ -10716,7 +10618,6 @@ HTMLProgressElement[JC] def after(nodes: Node | String*): Unit HTMLProgressElement[JC] def append(nodes: Node | String*): Unit HTMLProgressElement[JC] def appendChild(newChild: Node): Node HTMLProgressElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLProgressElement[JC] def attributes: NamedNodeMap HTMLProgressElement[JC] def baseURI: String HTMLProgressElement[JC] def before(nodes: Node | String*): Unit HTMLProgressElement[JC] def blur(): Unit @@ -10757,7 +10658,6 @@ HTMLProgressElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLProgressElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLProgressElement[JC] def hasAttribute(name: String): Boolean HTMLProgressElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLProgressElement[JC] def hasAttributes(): Boolean HTMLProgressElement[JC] def hasChildNodes(): Boolean HTMLProgressElement[JC] var id: String HTMLProgressElement[JC] var innerHTML: String @@ -10921,7 +10821,6 @@ HTMLQuoteElement[JC] def after(nodes: Node | String*): Unit HTMLQuoteElement[JC] def append(nodes: Node | String*): Unit HTMLQuoteElement[JC] def appendChild(newChild: Node): Node HTMLQuoteElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLQuoteElement[JC] def attributes: NamedNodeMap HTMLQuoteElement[JC] def baseURI: String HTMLQuoteElement[JC] def before(nodes: Node | String*): Unit HTMLQuoteElement[JC] def blur(): Unit @@ -10963,7 +10862,6 @@ HTMLQuoteElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLQuoteElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLQuoteElement[JC] def hasAttribute(name: String): Boolean HTMLQuoteElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLQuoteElement[JC] def hasAttributes(): Boolean HTMLQuoteElement[JC] def hasChildNodes(): Boolean HTMLQuoteElement[JC] var id: String HTMLQuoteElement[JC] var innerHTML: String @@ -11125,7 +11023,6 @@ HTMLScriptElement[JC] def append(nodes: Node | String*): Unit HTMLScriptElement[JC] def appendChild(newChild: Node): Node HTMLScriptElement[JC] var async: Boolean HTMLScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLScriptElement[JC] def attributes: NamedNodeMap HTMLScriptElement[JC] def baseURI: String HTMLScriptElement[JC] def before(nodes: Node | String*): Unit HTMLScriptElement[JC] def blur(): Unit @@ -11168,7 +11065,6 @@ HTMLScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLScriptElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLScriptElement[JC] def hasAttribute(name: String): Boolean HTMLScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLScriptElement[JC] def hasAttributes(): Boolean HTMLScriptElement[JC] def hasChildNodes(): Boolean HTMLScriptElement[JC] var id: String HTMLScriptElement[JC] var innerHTML: String @@ -11335,7 +11231,6 @@ HTMLSelectElement[JC] def append(nodes: Node | String*): Unit HTMLSelectElement[JC] def appendChild(newChild: Node): Node HTMLSelectElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLSelectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLSelectElement[JC] def attributes: NamedNodeMap HTMLSelectElement[JC] var autofocus: Boolean HTMLSelectElement[JC] def baseURI: String HTMLSelectElement[JC] def before(nodes: Node | String*): Unit @@ -11379,7 +11274,6 @@ HTMLSelectElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSelectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSelectElement[JC] def hasAttribute(name: String): Boolean HTMLSelectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLSelectElement[JC] def hasAttributes(): Boolean HTMLSelectElement[JC] def hasChildNodes(): Boolean HTMLSelectElement[JC] var id: String HTMLSelectElement[JC] var innerHTML: String @@ -11558,7 +11452,6 @@ HTMLSourceElement[JC] def after(nodes: Node | String*): Unit HTMLSourceElement[JC] def append(nodes: Node | String*): Unit HTMLSourceElement[JC] def appendChild(newChild: Node): Node HTMLSourceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLSourceElement[JC] def attributes: NamedNodeMap HTMLSourceElement[JC] def baseURI: String HTMLSourceElement[JC] def before(nodes: Node | String*): Unit HTMLSourceElement[JC] def blur(): Unit @@ -11598,7 +11491,6 @@ HTMLSourceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSourceElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSourceElement[JC] def hasAttribute(name: String): Boolean HTMLSourceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLSourceElement[JC] def hasAttributes(): Boolean HTMLSourceElement[JC] def hasChildNodes(): Boolean HTMLSourceElement[JC] var id: String HTMLSourceElement[JC] var innerHTML: String @@ -11762,7 +11654,6 @@ HTMLSpanElement[JC] def after(nodes: Node | String*): Unit HTMLSpanElement[JC] def append(nodes: Node | String*): Unit HTMLSpanElement[JC] def appendChild(newChild: Node): Node HTMLSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLSpanElement[JC] def attributes: NamedNodeMap HTMLSpanElement[JC] def baseURI: String HTMLSpanElement[JC] def before(nodes: Node | String*): Unit HTMLSpanElement[JC] def blur(): Unit @@ -11802,7 +11693,6 @@ HTMLSpanElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLSpanElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSpanElement[JC] def hasAttribute(name: String): Boolean HTMLSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLSpanElement[JC] def hasAttributes(): Boolean HTMLSpanElement[JC] def hasChildNodes(): Boolean HTMLSpanElement[JC] var id: String HTMLSpanElement[JC] var innerHTML: String @@ -11963,7 +11853,6 @@ HTMLStyleElement[JC] def after(nodes: Node | String*): Unit HTMLStyleElement[JC] def append(nodes: Node | String*): Unit HTMLStyleElement[JC] def appendChild(newChild: Node): Node HTMLStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLStyleElement[JC] def attributes: NamedNodeMap HTMLStyleElement[JC] def baseURI: String HTMLStyleElement[JC] def before(nodes: Node | String*): Unit HTMLStyleElement[JC] def blur(): Unit @@ -12003,7 +11892,6 @@ HTMLStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLStyleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLStyleElement[JC] def hasAttribute(name: String): Boolean HTMLStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLStyleElement[JC] def hasAttributes(): Boolean HTMLStyleElement[JC] def hasChildNodes(): Boolean HTMLStyleElement[JC] var id: String HTMLStyleElement[JC] var innerHTML: String @@ -12168,7 +12056,6 @@ HTMLTableCaptionElement[JC] def after(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def append(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def appendChild(newChild: Node): Node HTMLTableCaptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableCaptionElement[JC] def attributes: NamedNodeMap HTMLTableCaptionElement[JC] def baseURI: String HTMLTableCaptionElement[JC] def before(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def blur(): Unit @@ -12208,7 +12095,6 @@ HTMLTableCaptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableCaptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCaptionElement[JC] def hasAttribute(name: String): Boolean HTMLTableCaptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableCaptionElement[JC] def hasAttributes(): Boolean HTMLTableCaptionElement[JC] def hasChildNodes(): Boolean HTMLTableCaptionElement[JC] var id: String HTMLTableCaptionElement[JC] var innerHTML: String @@ -12369,7 +12255,6 @@ HTMLTableCellElement[JC] def after(nodes: Node | String*): Unit HTMLTableCellElement[JC] def append(nodes: Node | String*): Unit HTMLTableCellElement[JC] def appendChild(newChild: Node): Node HTMLTableCellElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableCellElement[JC] def attributes: NamedNodeMap HTMLTableCellElement[JC] def baseURI: String HTMLTableCellElement[JC] def before(nodes: Node | String*): Unit HTMLTableCellElement[JC] def blur(): Unit @@ -12411,7 +12296,6 @@ HTMLTableCellElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLTableCellElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCellElement[JC] def hasAttribute(name: String): Boolean HTMLTableCellElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableCellElement[JC] def hasAttributes(): Boolean HTMLTableCellElement[JC] def hasChildNodes(): Boolean HTMLTableCellElement[JC] def headers: String HTMLTableCellElement[JC] var id: String @@ -12574,7 +12458,6 @@ HTMLTableColElement[JC] def after(nodes: Node | String*): Unit HTMLTableColElement[JC] def append(nodes: Node | String*): Unit HTMLTableColElement[JC] def appendChild(newChild: Node): Node HTMLTableColElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableColElement[JC] def attributes: NamedNodeMap HTMLTableColElement[JC] def baseURI: String HTMLTableColElement[JC] def before(nodes: Node | String*): Unit HTMLTableColElement[JC] def blur(): Unit @@ -12614,7 +12497,6 @@ HTMLTableColElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableColElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableColElement[JC] def hasAttribute(name: String): Boolean HTMLTableColElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableColElement[JC] def hasAttributes(): Boolean HTMLTableColElement[JC] def hasChildNodes(): Boolean HTMLTableColElement[JC] var id: String HTMLTableColElement[JC] var innerHTML: String @@ -12776,7 +12658,6 @@ HTMLTableElement[JC] def after(nodes: Node | String*): Unit HTMLTableElement[JC] def append(nodes: Node | String*): Unit HTMLTableElement[JC] def appendChild(newChild: Node): Node HTMLTableElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableElement[JC] def attributes: NamedNodeMap HTMLTableElement[JC] def baseURI: String HTMLTableElement[JC] def before(nodes: Node | String*): Unit HTMLTableElement[JC] def blur(): Unit @@ -12825,7 +12706,6 @@ HTMLTableElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTableElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableElement[JC] def hasAttribute(name: String): Boolean HTMLTableElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableElement[JC] def hasAttributes(): Boolean HTMLTableElement[JC] def hasChildNodes(): Boolean HTMLTableElement[JC] var id: String HTMLTableElement[JC] var innerHTML: String @@ -12992,7 +12872,6 @@ HTMLTableRowElement[JC] def after(nodes: Node | String*): Unit HTMLTableRowElement[JC] def append(nodes: Node | String*): Unit HTMLTableRowElement[JC] def appendChild(newChild: Node): Node HTMLTableRowElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableRowElement[JC] def attributes: NamedNodeMap HTMLTableRowElement[JC] def baseURI: String HTMLTableRowElement[JC] def before(nodes: Node | String*): Unit HTMLTableRowElement[JC] def blur(): Unit @@ -13037,7 +12916,6 @@ HTMLTableRowElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableRowElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableRowElement[JC] def hasAttribute(name: String): Boolean HTMLTableRowElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableRowElement[JC] def hasAttributes(): Boolean HTMLTableRowElement[JC] def hasChildNodes(): Boolean HTMLTableRowElement[JC] var height: js.Any HTMLTableRowElement[JC] var id: String @@ -13202,7 +13080,6 @@ HTMLTableSectionElement[JC] def after(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def append(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def appendChild(newChild: Node): Node HTMLTableSectionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTableSectionElement[JC] def attributes: NamedNodeMap HTMLTableSectionElement[JC] def baseURI: String HTMLTableSectionElement[JC] def before(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def blur(): Unit @@ -13243,7 +13120,6 @@ HTMLTableSectionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableSectionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableSectionElement[JC] def hasAttribute(name: String): Boolean HTMLTableSectionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTableSectionElement[JC] def hasAttributes(): Boolean HTMLTableSectionElement[JC] def hasChildNodes(): Boolean HTMLTableSectionElement[JC] var id: String HTMLTableSectionElement[JC] var innerHTML: String @@ -13407,7 +13283,6 @@ HTMLTemplateElement[JC] def after(nodes: Node | String*): Unit HTMLTemplateElement[JC] def append(nodes: Node | String*): Unit HTMLTemplateElement[JC] def appendChild(newChild: Node): Node HTMLTemplateElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTemplateElement[JC] def attributes: NamedNodeMap HTMLTemplateElement[JC] def baseURI: String HTMLTemplateElement[JC] def before(nodes: Node | String*): Unit HTMLTemplateElement[JC] def blur(): Unit @@ -13448,7 +13323,6 @@ HTMLTemplateElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTemplateElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTemplateElement[JC] def hasAttribute(name: String): Boolean HTMLTemplateElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTemplateElement[JC] def hasAttributes(): Boolean HTMLTemplateElement[JC] def hasChildNodes(): Boolean HTMLTemplateElement[JC] var id: String HTMLTemplateElement[JC] var innerHTML: String @@ -13609,7 +13483,6 @@ HTMLTextAreaElement[JC] def after(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def append(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def appendChild(newChild: Node): Node HTMLTextAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTextAreaElement[JC] def attributes: NamedNodeMap HTMLTextAreaElement[JC] var autofocus: Boolean HTMLTextAreaElement[JC] def baseURI: String HTMLTextAreaElement[JC] def before(nodes: Node | String*): Unit @@ -13655,7 +13528,6 @@ HTMLTextAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTextAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTextAreaElement[JC] def hasAttribute(name: String): Boolean HTMLTextAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTextAreaElement[JC] def hasAttributes(): Boolean HTMLTextAreaElement[JC] def hasChildNodes(): Boolean HTMLTextAreaElement[JC] var id: String HTMLTextAreaElement[JC] var innerHTML: String @@ -13835,7 +13707,6 @@ HTMLTitleElement[JC] def after(nodes: Node | String*): Unit HTMLTitleElement[JC] def append(nodes: Node | String*): Unit HTMLTitleElement[JC] def appendChild(newChild: Node): Node HTMLTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTitleElement[JC] def attributes: NamedNodeMap HTMLTitleElement[JC] def baseURI: String HTMLTitleElement[JC] def before(nodes: Node | String*): Unit HTMLTitleElement[JC] def blur(): Unit @@ -13875,7 +13746,6 @@ HTMLTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTitleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTitleElement[JC] def hasAttribute(name: String): Boolean HTMLTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTitleElement[JC] def hasAttributes(): Boolean HTMLTitleElement[JC] def hasChildNodes(): Boolean HTMLTitleElement[JC] var id: String HTMLTitleElement[JC] var innerHTML: String @@ -14037,7 +13907,6 @@ HTMLTrackElement[JC] def after(nodes: Node | String*): Unit HTMLTrackElement[JC] def append(nodes: Node | String*): Unit HTMLTrackElement[JC] def appendChild(newChild: Node): Node HTMLTrackElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLTrackElement[JC] def attributes: NamedNodeMap HTMLTrackElement[JC] def baseURI: String HTMLTrackElement[JC] def before(nodes: Node | String*): Unit HTMLTrackElement[JC] def blur(): Unit @@ -14077,7 +13946,6 @@ HTMLTrackElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTrackElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTrackElement[JC] def hasAttribute(name: String): Boolean HTMLTrackElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLTrackElement[JC] def hasAttributes(): Boolean HTMLTrackElement[JC] def hasChildNodes(): Boolean HTMLTrackElement[JC] var id: String HTMLTrackElement[JC] var innerHTML: String @@ -14243,7 +14111,6 @@ HTMLUListElement[JC] def after(nodes: Node | String*): Unit HTMLUListElement[JC] def append(nodes: Node | String*): Unit HTMLUListElement[JC] def appendChild(newChild: Node): Node HTMLUListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLUListElement[JC] def attributes: NamedNodeMap HTMLUListElement[JC] def baseURI: String HTMLUListElement[JC] def before(nodes: Node | String*): Unit HTMLUListElement[JC] def blur(): Unit @@ -14283,7 +14150,6 @@ HTMLUListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLUListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUListElement[JC] def hasAttribute(name: String): Boolean HTMLUListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLUListElement[JC] def hasAttributes(): Boolean HTMLUListElement[JC] def hasChildNodes(): Boolean HTMLUListElement[JC] var id: String HTMLUListElement[JC] var innerHTML: String @@ -14444,7 +14310,6 @@ HTMLUnknownElement[JC] def after(nodes: Node | String*): Unit HTMLUnknownElement[JC] def append(nodes: Node | String*): Unit HTMLUnknownElement[JC] def appendChild(newChild: Node): Node HTMLUnknownElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLUnknownElement[JC] def attributes: NamedNodeMap HTMLUnknownElement[JC] def baseURI: String HTMLUnknownElement[JC] def before(nodes: Node | String*): Unit HTMLUnknownElement[JC] def blur(): Unit @@ -14484,7 +14349,6 @@ HTMLUnknownElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLUnknownElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUnknownElement[JC] def hasAttribute(name: String): Boolean HTMLUnknownElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLUnknownElement[JC] def hasAttributes(): Boolean HTMLUnknownElement[JC] def hasChildNodes(): Boolean HTMLUnknownElement[JC] var id: String HTMLUnknownElement[JC] var innerHTML: String @@ -14645,7 +14509,6 @@ HTMLVideoElement[JC] def after(nodes: Node | String*): Unit HTMLVideoElement[JC] def append(nodes: Node | String*): Unit HTMLVideoElement[JC] def appendChild(newChild: Node): Node HTMLVideoElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -HTMLVideoElement[JC] def attributes: NamedNodeMap HTMLVideoElement[JC] def audioTracks: AudioTrackList HTMLVideoElement[JC] var autoplay: Boolean HTMLVideoElement[JC] def baseURI: String @@ -14696,7 +14559,6 @@ HTMLVideoElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLVideoElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLVideoElement[JC] def hasAttribute(name: String): Boolean HTMLVideoElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -HTMLVideoElement[JC] def hasAttributes(): Boolean HTMLVideoElement[JC] def hasChildNodes(): Boolean HTMLVideoElement[JC] var height: Int HTMLVideoElement[JC] var id: String @@ -15159,7 +15021,6 @@ Image[JC] var alt: String Image[JC] def append(nodes: Node | String*): Unit Image[JC] def appendChild(newChild: Node): Node Image[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -Image[JC] def attributes: NamedNodeMap Image[JC] def baseURI: String Image[JC] def before(nodes: Node | String*): Unit Image[JC] def blur(): Unit @@ -15201,7 +15062,6 @@ Image[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Image[JC] var gotpointercapture: js.Function1[PointerEvent, _] Image[JC] def hasAttribute(name: String): Boolean Image[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -Image[JC] def hasAttributes(): Boolean Image[JC] def hasChildNodes(): Boolean Image[JC] var height: Int Image[JC] var href: String @@ -16395,7 +16255,6 @@ NavigatorVibration[JT] def vibrate(pattern: js.Array[Double]): Boolean Node[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit Node[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Node[JC] def appendChild(newChild: Node): Node -Node[JC] def attributes: NamedNodeMap Node[JC] def baseURI: String Node[JC] def childNodes: NodeList[Node] Node[JC] def cloneNode(deep: Boolean?): Node @@ -16403,7 +16262,6 @@ Node[JC] def compareDocumentPosition(other: Node): Int Node[JC] def contains(otherNode: Node): Boolean Node[JC] def dispatchEvent(evt: Event): Boolean Node[JC] def firstChild: Node -Node[JC] def hasAttributes(): Boolean Node[JC] def hasChildNodes(): Boolean Node[JC] var innerText: String Node[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -16851,7 +16709,6 @@ PresentationStyle[SO] val unspecified: PresentationStyle ProcessingInstruction[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit ProcessingInstruction[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit ProcessingInstruction[JC] def appendChild(newChild: Node): Node -ProcessingInstruction[JC] def attributes: NamedNodeMap ProcessingInstruction[JC] def baseURI: String ProcessingInstruction[JC] def childNodes: NodeList[Node] ProcessingInstruction[JC] def cloneNode(deep: Boolean?): Node @@ -16860,7 +16717,6 @@ ProcessingInstruction[JC] def contains(otherNode: Node): Boolean ProcessingInstruction[JC] def data: String ProcessingInstruction[JC] def dispatchEvent(evt: Event): Boolean ProcessingInstruction[JC] def firstChild: Node -ProcessingInstruction[JC] def hasAttributes(): Boolean ProcessingInstruction[JC] def hasChildNodes(): Boolean ProcessingInstruction[JC] var innerText: String ProcessingInstruction[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -17379,7 +17235,6 @@ SVGAElement[JC] def after(nodes: Node | String*): Unit SVGAElement[JC] def append(nodes: Node | String*): Unit SVGAElement[JC] def appendChild(newChild: Node): Node SVGAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGAElement[JC] def attributes: NamedNodeMap SVGAElement[JC] def baseURI: String SVGAElement[JC] def before(nodes: Node | String*): Unit SVGAElement[JC] def childElementCount: Int @@ -17415,7 +17270,6 @@ SVGAElement[JC] def getScreenCTM(): SVGMatrix SVGAElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGAElement[JC] def hasAttribute(name: String): Boolean SVGAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGAElement[JC] def hasAttributes(): Boolean SVGAElement[JC] def hasChildNodes(): Boolean SVGAElement[JC] def hasExtension(extension: String): Boolean SVGAElement[JC] var href: SVGAnimatedString @@ -17548,7 +17402,6 @@ SVGCircleElement[JC] def after(nodes: Node | String*): Unit SVGCircleElement[JC] def append(nodes: Node | String*): Unit SVGCircleElement[JC] def appendChild(newChild: Node): Node SVGCircleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGCircleElement[JC] def attributes: NamedNodeMap SVGCircleElement[JC] def baseURI: String SVGCircleElement[JC] def before(nodes: Node | String*): Unit SVGCircleElement[JC] def childElementCount: Int @@ -17586,7 +17439,6 @@ SVGCircleElement[JC] def getScreenCTM(): SVGMatrix SVGCircleElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGCircleElement[JC] def hasAttribute(name: String): Boolean SVGCircleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGCircleElement[JC] def hasAttributes(): Boolean SVGCircleElement[JC] def hasChildNodes(): Boolean SVGCircleElement[JC] def hasExtension(extension: String): Boolean SVGCircleElement[JC] var id: String @@ -17683,7 +17535,6 @@ SVGClipPathElement[JC] def after(nodes: Node | String*): Unit SVGClipPathElement[JC] def append(nodes: Node | String*): Unit SVGClipPathElement[JC] def appendChild(newChild: Node): Node SVGClipPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGClipPathElement[JC] def attributes: NamedNodeMap SVGClipPathElement[JC] def baseURI: String SVGClipPathElement[JC] def before(nodes: Node | String*): Unit SVGClipPathElement[JC] def childElementCount: Int @@ -17720,7 +17571,6 @@ SVGClipPathElement[JC] def getScreenCTM(): SVGMatrix SVGClipPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGClipPathElement[JC] def hasAttribute(name: String): Boolean SVGClipPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGClipPathElement[JC] def hasAttributes(): Boolean SVGClipPathElement[JC] def hasChildNodes(): Boolean SVGClipPathElement[JC] def hasExtension(extension: String): Boolean SVGClipPathElement[JC] var id: String @@ -17814,7 +17664,6 @@ SVGComponentTransferFunctionElement[JC] def amplitude: SVGAnimatedNumber SVGComponentTransferFunctionElement[JC] def append(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def appendChild(newChild: Node): Node SVGComponentTransferFunctionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGComponentTransferFunctionElement[JC] def attributes: NamedNodeMap SVGComponentTransferFunctionElement[JC] def baseURI: String SVGComponentTransferFunctionElement[JC] def before(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def childElementCount: Int @@ -17844,7 +17693,6 @@ SVGComponentTransferFunctionElement[JC] def getElementsByTagName(name: String): SVGComponentTransferFunctionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGComponentTransferFunctionElement[JC] def hasAttribute(name: String): Boolean SVGComponentTransferFunctionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGComponentTransferFunctionElement[JC] def hasAttributes(): Boolean SVGComponentTransferFunctionElement[JC] def hasChildNodes(): Boolean SVGComponentTransferFunctionElement[JC] var id: String SVGComponentTransferFunctionElement[JC] var innerHTML: String @@ -17939,7 +17787,6 @@ SVGDefsElement[JC] def after(nodes: Node | String*): Unit SVGDefsElement[JC] def append(nodes: Node | String*): Unit SVGDefsElement[JC] def appendChild(newChild: Node): Node SVGDefsElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGDefsElement[JC] def attributes: NamedNodeMap SVGDefsElement[JC] def baseURI: String SVGDefsElement[JC] def before(nodes: Node | String*): Unit SVGDefsElement[JC] def childElementCount: Int @@ -17975,7 +17822,6 @@ SVGDefsElement[JC] def getScreenCTM(): SVGMatrix SVGDefsElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGDefsElement[JC] def hasAttribute(name: String): Boolean SVGDefsElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGDefsElement[JC] def hasAttributes(): Boolean SVGDefsElement[JC] def hasChildNodes(): Boolean SVGDefsElement[JC] def hasExtension(extension: String): Boolean SVGDefsElement[JC] var id: String @@ -18068,7 +17914,6 @@ SVGDescElement[JC] def after(nodes: Node | String*): Unit SVGDescElement[JC] def append(nodes: Node | String*): Unit SVGDescElement[JC] def appendChild(newChild: Node): Node SVGDescElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGDescElement[JC] def attributes: NamedNodeMap SVGDescElement[JC] def baseURI: String SVGDescElement[JC] def before(nodes: Node | String*): Unit SVGDescElement[JC] def childElementCount: Int @@ -18098,7 +17943,6 @@ SVGDescElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGDescElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGDescElement[JC] def hasAttribute(name: String): Boolean SVGDescElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGDescElement[JC] def hasAttributes(): Boolean SVGDescElement[JC] def hasChildNodes(): Boolean SVGDescElement[JC] var id: String SVGDescElement[JC] var innerHTML: String @@ -18185,7 +18029,6 @@ SVGElement[JC] def after(nodes: Node | String*): Unit SVGElement[JC] def append(nodes: Node | String*): Unit SVGElement[JC] def appendChild(newChild: Node): Node SVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGElement[JC] def attributes: NamedNodeMap SVGElement[JC] def baseURI: String SVGElement[JC] def before(nodes: Node | String*): Unit SVGElement[JC] def childElementCount: Int @@ -18214,7 +18057,6 @@ SVGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Element] SVGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGElement[JC] def hasAttribute(name: String): Boolean SVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGElement[JC] def hasAttributes(): Boolean SVGElement[JC] def hasChildNodes(): Boolean SVGElement[JC] var id: String SVGElement[JC] var innerHTML: String @@ -18313,7 +18155,6 @@ SVGEllipseElement[JC] def after(nodes: Node | String*): Unit SVGEllipseElement[JC] def append(nodes: Node | String*): Unit SVGEllipseElement[JC] def appendChild(newChild: Node): Node SVGEllipseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGEllipseElement[JC] def attributes: NamedNodeMap SVGEllipseElement[JC] def baseURI: String SVGEllipseElement[JC] def before(nodes: Node | String*): Unit SVGEllipseElement[JC] def childElementCount: Int @@ -18351,7 +18192,6 @@ SVGEllipseElement[JC] def getScreenCTM(): SVGMatrix SVGEllipseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGEllipseElement[JC] def hasAttribute(name: String): Boolean SVGEllipseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGEllipseElement[JC] def hasAttributes(): Boolean SVGEllipseElement[JC] def hasChildNodes(): Boolean SVGEllipseElement[JC] def hasExtension(extension: String): Boolean SVGEllipseElement[JC] var id: String @@ -18453,7 +18293,6 @@ SVGFEBlendElement[JC] def after(nodes: Node | String*): Unit SVGFEBlendElement[JC] def append(nodes: Node | String*): Unit SVGFEBlendElement[JC] def appendChild(newChild: Node): Node SVGFEBlendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEBlendElement[JC] def attributes: NamedNodeMap SVGFEBlendElement[JC] def baseURI: String SVGFEBlendElement[JC] def before(nodes: Node | String*): Unit SVGFEBlendElement[JC] def childElementCount: Int @@ -18483,7 +18322,6 @@ SVGFEBlendElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEBlendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEBlendElement[JC] def hasAttribute(name: String): Boolean SVGFEBlendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEBlendElement[JC] def hasAttributes(): Boolean SVGFEBlendElement[JC] def hasChildNodes(): Boolean SVGFEBlendElement[JC] def height: SVGAnimatedLength SVGFEBlendElement[JC] var id: String @@ -18582,7 +18420,6 @@ SVGFEColorMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEColorMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEColorMatrixElement[JC] def attributes: NamedNodeMap SVGFEColorMatrixElement[JC] def baseURI: String SVGFEColorMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def childElementCount: Int @@ -18612,7 +18449,6 @@ SVGFEColorMatrixElement[JC] def getElementsByTagName(name: String): HTMLCollecti SVGFEColorMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEColorMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEColorMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEColorMatrixElement[JC] def hasAttributes(): Boolean SVGFEColorMatrixElement[JC] def hasChildNodes(): Boolean SVGFEColorMatrixElement[JC] def height: SVGAnimatedLength SVGFEColorMatrixElement[JC] var id: String @@ -18710,7 +18546,6 @@ SVGFEComponentTransferElement[JC] def after(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def append(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def appendChild(newChild: Node): Node SVGFEComponentTransferElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEComponentTransferElement[JC] def attributes: NamedNodeMap SVGFEComponentTransferElement[JC] def baseURI: String SVGFEComponentTransferElement[JC] def before(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def childElementCount: Int @@ -18740,7 +18575,6 @@ SVGFEComponentTransferElement[JC] def getElementsByTagName(name: String): HTMLCo SVGFEComponentTransferElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEComponentTransferElement[JC] def hasAttribute(name: String): Boolean SVGFEComponentTransferElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEComponentTransferElement[JC] def hasAttributes(): Boolean SVGFEComponentTransferElement[JC] def hasChildNodes(): Boolean SVGFEComponentTransferElement[JC] def height: SVGAnimatedLength SVGFEComponentTransferElement[JC] var id: String @@ -18831,7 +18665,6 @@ SVGFECompositeElement[JC] def after(nodes: Node | String*): Unit SVGFECompositeElement[JC] def append(nodes: Node | String*): Unit SVGFECompositeElement[JC] def appendChild(newChild: Node): Node SVGFECompositeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFECompositeElement[JC] def attributes: NamedNodeMap SVGFECompositeElement[JC] def baseURI: String SVGFECompositeElement[JC] def before(nodes: Node | String*): Unit SVGFECompositeElement[JC] def childElementCount: Int @@ -18861,7 +18694,6 @@ SVGFECompositeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFECompositeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFECompositeElement[JC] def hasAttribute(name: String): Boolean SVGFECompositeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFECompositeElement[JC] def hasAttributes(): Boolean SVGFECompositeElement[JC] def hasChildNodes(): Boolean SVGFECompositeElement[JC] def height: SVGAnimatedLength SVGFECompositeElement[JC] var id: String @@ -18965,7 +18797,6 @@ SVGFEConvolveMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEConvolveMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEConvolveMatrixElement[JC] def attributes: NamedNodeMap SVGFEConvolveMatrixElement[JC] def baseURI: String SVGFEConvolveMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def bias: SVGAnimatedNumber @@ -18998,7 +18829,6 @@ SVGFEConvolveMatrixElement[JC] def getElementsByTagName(name: String): HTMLColle SVGFEConvolveMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEConvolveMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEConvolveMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEConvolveMatrixElement[JC] def hasAttributes(): Boolean SVGFEConvolveMatrixElement[JC] def hasChildNodes(): Boolean SVGFEConvolveMatrixElement[JC] def height: SVGAnimatedLength SVGFEConvolveMatrixElement[JC] var id: String @@ -19101,7 +18931,6 @@ SVGFEDiffuseLightingElement[JC] def after(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def append(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def appendChild(newChild: Node): Node SVGFEDiffuseLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEDiffuseLightingElement[JC] def attributes: NamedNodeMap SVGFEDiffuseLightingElement[JC] def baseURI: String SVGFEDiffuseLightingElement[JC] def before(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def childElementCount: Int @@ -19132,7 +18961,6 @@ SVGFEDiffuseLightingElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDiffuseLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDiffuseLightingElement[JC] def hasAttribute(name: String): Boolean SVGFEDiffuseLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEDiffuseLightingElement[JC] def hasAttributes(): Boolean SVGFEDiffuseLightingElement[JC] def hasChildNodes(): Boolean SVGFEDiffuseLightingElement[JC] def height: SVGAnimatedLength SVGFEDiffuseLightingElement[JC] var id: String @@ -19226,7 +19054,6 @@ SVGFEDisplacementMapElement[JC] def after(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def append(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def appendChild(newChild: Node): Node SVGFEDisplacementMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEDisplacementMapElement[JC] def attributes: NamedNodeMap SVGFEDisplacementMapElement[JC] def baseURI: String SVGFEDisplacementMapElement[JC] def before(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def childElementCount: Int @@ -19256,7 +19083,6 @@ SVGFEDisplacementMapElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDisplacementMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDisplacementMapElement[JC] def hasAttribute(name: String): Boolean SVGFEDisplacementMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEDisplacementMapElement[JC] def hasAttributes(): Boolean SVGFEDisplacementMapElement[JC] def hasChildNodes(): Boolean SVGFEDisplacementMapElement[JC] def height: SVGAnimatedLength SVGFEDisplacementMapElement[JC] var id: String @@ -19356,7 +19182,6 @@ SVGFEDistantLightElement[JC] def after(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def append(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def appendChild(newChild: Node): Node SVGFEDistantLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEDistantLightElement[JC] def attributes: NamedNodeMap SVGFEDistantLightElement[JC] def azimuth: SVGAnimatedNumber SVGFEDistantLightElement[JC] def baseURI: String SVGFEDistantLightElement[JC] def before(nodes: Node | String*): Unit @@ -19387,7 +19212,6 @@ SVGFEDistantLightElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEDistantLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDistantLightElement[JC] def hasAttribute(name: String): Boolean SVGFEDistantLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEDistantLightElement[JC] def hasAttributes(): Boolean SVGFEDistantLightElement[JC] def hasChildNodes(): Boolean SVGFEDistantLightElement[JC] var id: String SVGFEDistantLightElement[JC] var innerHTML: String @@ -19471,7 +19295,6 @@ SVGFEFloodElement[JC] def after(nodes: Node | String*): Unit SVGFEFloodElement[JC] def append(nodes: Node | String*): Unit SVGFEFloodElement[JC] def appendChild(newChild: Node): Node SVGFEFloodElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFloodElement[JC] def attributes: NamedNodeMap SVGFEFloodElement[JC] def baseURI: String SVGFEFloodElement[JC] def before(nodes: Node | String*): Unit SVGFEFloodElement[JC] def childElementCount: Int @@ -19501,7 +19324,6 @@ SVGFEFloodElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFloodElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFloodElement[JC] def hasAttribute(name: String): Boolean SVGFEFloodElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFloodElement[JC] def hasAttributes(): Boolean SVGFEFloodElement[JC] def hasChildNodes(): Boolean SVGFEFloodElement[JC] def height: SVGAnimatedLength SVGFEFloodElement[JC] var id: String @@ -19592,7 +19414,6 @@ SVGFEFuncAElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncAElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def appendChild(newChild: Node): Node SVGFEFuncAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncAElement[JC] def attributes: NamedNodeMap SVGFEFuncAElement[JC] def baseURI: String SVGFEFuncAElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def childElementCount: Int @@ -19622,7 +19443,6 @@ SVGFEFuncAElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncAElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncAElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncAElement[JC] def hasAttributes(): Boolean SVGFEFuncAElement[JC] def hasChildNodes(): Boolean SVGFEFuncAElement[JC] var id: String SVGFEFuncAElement[JC] var innerHTML: String @@ -19712,7 +19532,6 @@ SVGFEFuncBElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncBElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def appendChild(newChild: Node): Node SVGFEFuncBElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncBElement[JC] def attributes: NamedNodeMap SVGFEFuncBElement[JC] def baseURI: String SVGFEFuncBElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def childElementCount: Int @@ -19742,7 +19561,6 @@ SVGFEFuncBElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncBElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncBElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncBElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncBElement[JC] def hasAttributes(): Boolean SVGFEFuncBElement[JC] def hasChildNodes(): Boolean SVGFEFuncBElement[JC] var id: String SVGFEFuncBElement[JC] var innerHTML: String @@ -19832,7 +19650,6 @@ SVGFEFuncGElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncGElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def appendChild(newChild: Node): Node SVGFEFuncGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncGElement[JC] def attributes: NamedNodeMap SVGFEFuncGElement[JC] def baseURI: String SVGFEFuncGElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def childElementCount: Int @@ -19862,7 +19679,6 @@ SVGFEFuncGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncGElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncGElement[JC] def hasAttributes(): Boolean SVGFEFuncGElement[JC] def hasChildNodes(): Boolean SVGFEFuncGElement[JC] var id: String SVGFEFuncGElement[JC] var innerHTML: String @@ -19952,7 +19768,6 @@ SVGFEFuncRElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncRElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def appendChild(newChild: Node): Node SVGFEFuncRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEFuncRElement[JC] def attributes: NamedNodeMap SVGFEFuncRElement[JC] def baseURI: String SVGFEFuncRElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def childElementCount: Int @@ -19982,7 +19797,6 @@ SVGFEFuncRElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncRElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEFuncRElement[JC] def hasAttributes(): Boolean SVGFEFuncRElement[JC] def hasChildNodes(): Boolean SVGFEFuncRElement[JC] var id: String SVGFEFuncRElement[JC] var innerHTML: String @@ -20071,7 +19885,6 @@ SVGFEGaussianBlurElement[JC] def after(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def append(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def appendChild(newChild: Node): Node SVGFEGaussianBlurElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEGaussianBlurElement[JC] def attributes: NamedNodeMap SVGFEGaussianBlurElement[JC] def baseURI: String SVGFEGaussianBlurElement[JC] def before(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def childElementCount: Int @@ -20101,7 +19914,6 @@ SVGFEGaussianBlurElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEGaussianBlurElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEGaussianBlurElement[JC] def hasAttribute(name: String): Boolean SVGFEGaussianBlurElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEGaussianBlurElement[JC] def hasAttributes(): Boolean SVGFEGaussianBlurElement[JC] def hasChildNodes(): Boolean SVGFEGaussianBlurElement[JC] def height: SVGAnimatedLength SVGFEGaussianBlurElement[JC] var id: String @@ -20195,7 +20007,6 @@ SVGFEImageElement[JC] def after(nodes: Node | String*): Unit SVGFEImageElement[JC] def append(nodes: Node | String*): Unit SVGFEImageElement[JC] def appendChild(newChild: Node): Node SVGFEImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEImageElement[JC] def attributes: NamedNodeMap SVGFEImageElement[JC] def baseURI: String SVGFEImageElement[JC] def before(nodes: Node | String*): Unit SVGFEImageElement[JC] def childElementCount: Int @@ -20226,7 +20037,6 @@ SVGFEImageElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEImageElement[JC] def hasAttribute(name: String): Boolean SVGFEImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEImageElement[JC] def hasAttributes(): Boolean SVGFEImageElement[JC] def hasChildNodes(): Boolean SVGFEImageElement[JC] def height: SVGAnimatedLength SVGFEImageElement[JC] var href: SVGAnimatedString @@ -20320,7 +20130,6 @@ SVGFEMergeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEMergeElement[JC] def attributes: NamedNodeMap SVGFEMergeElement[JC] def baseURI: String SVGFEMergeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeElement[JC] def childElementCount: Int @@ -20350,7 +20159,6 @@ SVGFEMergeElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEMergeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEMergeElement[JC] def hasAttributes(): Boolean SVGFEMergeElement[JC] def hasChildNodes(): Boolean SVGFEMergeElement[JC] def height: SVGAnimatedLength SVGFEMergeElement[JC] var id: String @@ -20440,7 +20248,6 @@ SVGFEMergeNodeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeNodeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEMergeNodeElement[JC] def attributes: NamedNodeMap SVGFEMergeNodeElement[JC] def baseURI: String SVGFEMergeNodeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def childElementCount: Int @@ -20469,7 +20276,6 @@ SVGFEMergeNodeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFEMergeNodeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeNodeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeNodeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEMergeNodeElement[JC] def hasAttributes(): Boolean SVGFEMergeNodeElement[JC] def hasChildNodes(): Boolean SVGFEMergeNodeElement[JC] var id: String SVGFEMergeNodeElement[JC] def in1: SVGAnimatedString @@ -20554,7 +20360,6 @@ SVGFEMorphologyElement[JC] def after(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def append(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def appendChild(newChild: Node): Node SVGFEMorphologyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEMorphologyElement[JC] def attributes: NamedNodeMap SVGFEMorphologyElement[JC] def baseURI: String SVGFEMorphologyElement[JC] def before(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def childElementCount: Int @@ -20584,7 +20389,6 @@ SVGFEMorphologyElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEMorphologyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMorphologyElement[JC] def hasAttribute(name: String): Boolean SVGFEMorphologyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEMorphologyElement[JC] def hasAttributes(): Boolean SVGFEMorphologyElement[JC] def hasChildNodes(): Boolean SVGFEMorphologyElement[JC] def height: SVGAnimatedLength SVGFEMorphologyElement[JC] var id: String @@ -20681,7 +20485,6 @@ SVGFEOffsetElement[JC] def after(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def append(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def appendChild(newChild: Node): Node SVGFEOffsetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEOffsetElement[JC] def attributes: NamedNodeMap SVGFEOffsetElement[JC] def baseURI: String SVGFEOffsetElement[JC] def before(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def childElementCount: Int @@ -20713,7 +20516,6 @@ SVGFEOffsetElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGFEOffsetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEOffsetElement[JC] def hasAttribute(name: String): Boolean SVGFEOffsetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEOffsetElement[JC] def hasAttributes(): Boolean SVGFEOffsetElement[JC] def hasChildNodes(): Boolean SVGFEOffsetElement[JC] def height: SVGAnimatedLength SVGFEOffsetElement[JC] var id: String @@ -20804,7 +20606,6 @@ SVGFEPointLightElement[JC] def after(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def append(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def appendChild(newChild: Node): Node SVGFEPointLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFEPointLightElement[JC] def attributes: NamedNodeMap SVGFEPointLightElement[JC] def baseURI: String SVGFEPointLightElement[JC] def before(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def childElementCount: Int @@ -20833,7 +20634,6 @@ SVGFEPointLightElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEPointLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEPointLightElement[JC] def hasAttribute(name: String): Boolean SVGFEPointLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFEPointLightElement[JC] def hasAttributes(): Boolean SVGFEPointLightElement[JC] def hasChildNodes(): Boolean SVGFEPointLightElement[JC] var id: String SVGFEPointLightElement[JC] var innerHTML: String @@ -20920,7 +20720,6 @@ SVGFESpecularLightingElement[JC] def after(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def append(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def appendChild(newChild: Node): Node SVGFESpecularLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFESpecularLightingElement[JC] def attributes: NamedNodeMap SVGFESpecularLightingElement[JC] def baseURI: String SVGFESpecularLightingElement[JC] def before(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def childElementCount: Int @@ -20950,7 +20749,6 @@ SVGFESpecularLightingElement[JC] def getElementsByTagName(name: String): HTMLCol SVGFESpecularLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpecularLightingElement[JC] def hasAttribute(name: String): Boolean SVGFESpecularLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFESpecularLightingElement[JC] def hasAttributes(): Boolean SVGFESpecularLightingElement[JC] def hasChildNodes(): Boolean SVGFESpecularLightingElement[JC] def height: SVGAnimatedLength SVGFESpecularLightingElement[JC] var id: String @@ -21046,7 +20844,6 @@ SVGFESpotLightElement[JC] def after(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def append(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def appendChild(newChild: Node): Node SVGFESpotLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFESpotLightElement[JC] def attributes: NamedNodeMap SVGFESpotLightElement[JC] def baseURI: String SVGFESpotLightElement[JC] def before(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def childElementCount: Int @@ -21075,7 +20872,6 @@ SVGFESpotLightElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFESpotLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpotLightElement[JC] def hasAttribute(name: String): Boolean SVGFESpotLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFESpotLightElement[JC] def hasAttributes(): Boolean SVGFESpotLightElement[JC] def hasChildNodes(): Boolean SVGFESpotLightElement[JC] var id: String SVGFESpotLightElement[JC] var innerHTML: String @@ -21167,7 +20963,6 @@ SVGFETileElement[JC] def after(nodes: Node | String*): Unit SVGFETileElement[JC] def append(nodes: Node | String*): Unit SVGFETileElement[JC] def appendChild(newChild: Node): Node SVGFETileElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFETileElement[JC] def attributes: NamedNodeMap SVGFETileElement[JC] def baseURI: String SVGFETileElement[JC] def before(nodes: Node | String*): Unit SVGFETileElement[JC] def childElementCount: Int @@ -21197,7 +20992,6 @@ SVGFETileElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFETileElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETileElement[JC] def hasAttribute(name: String): Boolean SVGFETileElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFETileElement[JC] def hasAttributes(): Boolean SVGFETileElement[JC] def hasChildNodes(): Boolean SVGFETileElement[JC] def height: SVGAnimatedLength SVGFETileElement[JC] var id: String @@ -21288,7 +21082,6 @@ SVGFETurbulenceElement[JC] def after(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def append(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def appendChild(newChild: Node): Node SVGFETurbulenceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFETurbulenceElement[JC] def attributes: NamedNodeMap SVGFETurbulenceElement[JC] def baseFrequencyX: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseFrequencyY: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseURI: String @@ -21320,7 +21113,6 @@ SVGFETurbulenceElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFETurbulenceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETurbulenceElement[JC] def hasAttribute(name: String): Boolean SVGFETurbulenceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFETurbulenceElement[JC] def hasAttributes(): Boolean SVGFETurbulenceElement[JC] def hasChildNodes(): Boolean SVGFETurbulenceElement[JC] def height: SVGAnimatedLength SVGFETurbulenceElement[JC] var id: String @@ -21423,7 +21215,6 @@ SVGFilterElement[JC] def after(nodes: Node | String*): Unit SVGFilterElement[JC] def append(nodes: Node | String*): Unit SVGFilterElement[JC] def appendChild(newChild: Node): Node SVGFilterElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGFilterElement[JC] def attributes: NamedNodeMap SVGFilterElement[JC] def baseURI: String SVGFilterElement[JC] def before(nodes: Node | String*): Unit SVGFilterElement[JC] def childElementCount: Int @@ -21457,7 +21248,6 @@ SVGFilterElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFilterElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFilterElement[JC] def hasAttribute(name: String): Boolean SVGFilterElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGFilterElement[JC] def hasAttributes(): Boolean SVGFilterElement[JC] def hasChildNodes(): Boolean SVGFilterElement[JC] def height: SVGAnimatedLength SVGFilterElement[JC] var href: SVGAnimatedString @@ -21560,7 +21350,6 @@ SVGGElement[JC] def after(nodes: Node | String*): Unit SVGGElement[JC] def append(nodes: Node | String*): Unit SVGGElement[JC] def appendChild(newChild: Node): Node SVGGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGGElement[JC] def attributes: NamedNodeMap SVGGElement[JC] def baseURI: String SVGGElement[JC] def before(nodes: Node | String*): Unit SVGGElement[JC] def childElementCount: Int @@ -21596,7 +21385,6 @@ SVGGElement[JC] def getScreenCTM(): SVGMatrix SVGGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGGElement[JC] def hasAttribute(name: String): Boolean SVGGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGGElement[JC] def hasAttributes(): Boolean SVGGElement[JC] def hasChildNodes(): Boolean SVGGElement[JC] def hasExtension(extension: String): Boolean SVGGElement[JC] var id: String @@ -21692,7 +21480,6 @@ SVGGradientElement[JC] def after(nodes: Node | String*): Unit SVGGradientElement[JC] def append(nodes: Node | String*): Unit SVGGradientElement[JC] def appendChild(newChild: Node): Node SVGGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGGradientElement[JC] def attributes: NamedNodeMap SVGGradientElement[JC] def baseURI: String SVGGradientElement[JC] def before(nodes: Node | String*): Unit SVGGradientElement[JC] def childElementCount: Int @@ -21725,7 +21512,6 @@ SVGGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGGradientElement[JC] def hasAttribute(name: String): Boolean SVGGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGGradientElement[JC] def hasAttributes(): Boolean SVGGradientElement[JC] def hasChildNodes(): Boolean SVGGradientElement[JC] var href: SVGAnimatedString SVGGradientElement[JC] var id: String @@ -21816,7 +21602,6 @@ SVGImageElement[JC] def after(nodes: Node | String*): Unit SVGImageElement[JC] def append(nodes: Node | String*): Unit SVGImageElement[JC] def appendChild(newChild: Node): Node SVGImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGImageElement[JC] def attributes: NamedNodeMap SVGImageElement[JC] def baseURI: String SVGImageElement[JC] def before(nodes: Node | String*): Unit SVGImageElement[JC] def childElementCount: Int @@ -21852,7 +21637,6 @@ SVGImageElement[JC] def getScreenCTM(): SVGMatrix SVGImageElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGImageElement[JC] def hasAttribute(name: String): Boolean SVGImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGImageElement[JC] def hasAttributes(): Boolean SVGImageElement[JC] def hasChildNodes(): Boolean SVGImageElement[JC] def hasExtension(extension: String): Boolean SVGImageElement[JC] def height: SVGAnimatedLength @@ -21978,7 +21762,6 @@ SVGLineElement[JC] def after(nodes: Node | String*): Unit SVGLineElement[JC] def append(nodes: Node | String*): Unit SVGLineElement[JC] def appendChild(newChild: Node): Node SVGLineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGLineElement[JC] def attributes: NamedNodeMap SVGLineElement[JC] def baseURI: String SVGLineElement[JC] def before(nodes: Node | String*): Unit SVGLineElement[JC] def childElementCount: Int @@ -22014,7 +21797,6 @@ SVGLineElement[JC] def getScreenCTM(): SVGMatrix SVGLineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGLineElement[JC] def hasAttribute(name: String): Boolean SVGLineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGLineElement[JC] def hasAttributes(): Boolean SVGLineElement[JC] def hasChildNodes(): Boolean SVGLineElement[JC] def hasExtension(extension: String): Boolean SVGLineElement[JC] var id: String @@ -22114,7 +21896,6 @@ SVGLinearGradientElement[JC] def after(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def append(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def appendChild(newChild: Node): Node SVGLinearGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGLinearGradientElement[JC] def attributes: NamedNodeMap SVGLinearGradientElement[JC] def baseURI: String SVGLinearGradientElement[JC] def before(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def childElementCount: Int @@ -22147,7 +21928,6 @@ SVGLinearGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGLinearGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGLinearGradientElement[JC] def hasAttribute(name: String): Boolean SVGLinearGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGLinearGradientElement[JC] def hasAttributes(): Boolean SVGLinearGradientElement[JC] def hasChildNodes(): Boolean SVGLinearGradientElement[JC] var href: SVGAnimatedString SVGLinearGradientElement[JC] var id: String @@ -22244,7 +22024,6 @@ SVGMarkerElement[JC] def after(nodes: Node | String*): Unit SVGMarkerElement[JC] def append(nodes: Node | String*): Unit SVGMarkerElement[JC] def appendChild(newChild: Node): Node SVGMarkerElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGMarkerElement[JC] def attributes: NamedNodeMap SVGMarkerElement[JC] def baseURI: String SVGMarkerElement[JC] def before(nodes: Node | String*): Unit SVGMarkerElement[JC] def childElementCount: Int @@ -22275,7 +22054,6 @@ SVGMarkerElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGMarkerElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMarkerElement[JC] def hasAttribute(name: String): Boolean SVGMarkerElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGMarkerElement[JC] def hasAttributes(): Boolean SVGMarkerElement[JC] def hasChildNodes(): Boolean SVGMarkerElement[JC] var id: String SVGMarkerElement[JC] var innerHTML: String @@ -22382,7 +22160,6 @@ SVGMaskElement[JC] def after(nodes: Node | String*): Unit SVGMaskElement[JC] def append(nodes: Node | String*): Unit SVGMaskElement[JC] def appendChild(newChild: Node): Node SVGMaskElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGMaskElement[JC] def attributes: NamedNodeMap SVGMaskElement[JC] def baseURI: String SVGMaskElement[JC] def before(nodes: Node | String*): Unit SVGMaskElement[JC] def childElementCount: Int @@ -22413,7 +22190,6 @@ SVGMaskElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGMaskElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMaskElement[JC] def hasAttribute(name: String): Boolean SVGMaskElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGMaskElement[JC] def hasAttributes(): Boolean SVGMaskElement[JC] def hasChildNodes(): Boolean SVGMaskElement[JC] def hasExtension(extension: String): Boolean SVGMaskElement[JC] def height: SVGAnimatedLength @@ -22527,7 +22303,6 @@ SVGMetadataElement[JC] def after(nodes: Node | String*): Unit SVGMetadataElement[JC] def append(nodes: Node | String*): Unit SVGMetadataElement[JC] def appendChild(newChild: Node): Node SVGMetadataElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGMetadataElement[JC] def attributes: NamedNodeMap SVGMetadataElement[JC] def baseURI: String SVGMetadataElement[JC] def before(nodes: Node | String*): Unit SVGMetadataElement[JC] def childElementCount: Int @@ -22556,7 +22331,6 @@ SVGMetadataElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGMetadataElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMetadataElement[JC] def hasAttribute(name: String): Boolean SVGMetadataElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGMetadataElement[JC] def hasAttributes(): Boolean SVGMetadataElement[JC] def hasChildNodes(): Boolean SVGMetadataElement[JC] var id: String SVGMetadataElement[JC] var innerHTML: String @@ -22649,7 +22423,6 @@ SVGPathElement[JC] def after(nodes: Node | String*): Unit SVGPathElement[JC] def append(nodes: Node | String*): Unit SVGPathElement[JC] def appendChild(newChild: Node): Node SVGPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPathElement[JC] def attributes: NamedNodeMap SVGPathElement[JC] def baseURI: String SVGPathElement[JC] def before(nodes: Node | String*): Unit SVGPathElement[JC] def childElementCount: Int @@ -22707,7 +22480,6 @@ SVGPathElement[JC] def getTotalLength(): Double SVGPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPathElement[JC] def hasAttribute(name: String): Boolean SVGPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPathElement[JC] def hasAttributes(): Boolean SVGPathElement[JC] def hasChildNodes(): Boolean SVGPathElement[JC] def hasExtension(extension: String): Boolean SVGPathElement[JC] var id: String @@ -22930,7 +22702,6 @@ SVGPatternElement[JC] def after(nodes: Node | String*): Unit SVGPatternElement[JC] def append(nodes: Node | String*): Unit SVGPatternElement[JC] def appendChild(newChild: Node): Node SVGPatternElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPatternElement[JC] def attributes: NamedNodeMap SVGPatternElement[JC] def baseURI: String SVGPatternElement[JC] def before(nodes: Node | String*): Unit SVGPatternElement[JC] def childElementCount: Int @@ -22961,7 +22732,6 @@ SVGPatternElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGPatternElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGPatternElement[JC] def hasAttribute(name: String): Boolean SVGPatternElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPatternElement[JC] def hasAttributes(): Boolean SVGPatternElement[JC] def hasChildNodes(): Boolean SVGPatternElement[JC] def hasExtension(extension: String): Boolean SVGPatternElement[JC] def height: SVGAnimatedLength @@ -23074,7 +22844,6 @@ SVGPolygonElement[JC] def animatedPoints: SVGPointList SVGPolygonElement[JC] def append(nodes: Node | String*): Unit SVGPolygonElement[JC] def appendChild(newChild: Node): Node SVGPolygonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPolygonElement[JC] def attributes: NamedNodeMap SVGPolygonElement[JC] def baseURI: String SVGPolygonElement[JC] def before(nodes: Node | String*): Unit SVGPolygonElement[JC] def childElementCount: Int @@ -23110,7 +22879,6 @@ SVGPolygonElement[JC] def getScreenCTM(): SVGMatrix SVGPolygonElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolygonElement[JC] def hasAttribute(name: String): Boolean SVGPolygonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPolygonElement[JC] def hasAttributes(): Boolean SVGPolygonElement[JC] def hasChildNodes(): Boolean SVGPolygonElement[JC] def hasExtension(extension: String): Boolean SVGPolygonElement[JC] var id: String @@ -23205,7 +22973,6 @@ SVGPolylineElement[JC] def animatedPoints: SVGPointList SVGPolylineElement[JC] def append(nodes: Node | String*): Unit SVGPolylineElement[JC] def appendChild(newChild: Node): Node SVGPolylineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGPolylineElement[JC] def attributes: NamedNodeMap SVGPolylineElement[JC] def baseURI: String SVGPolylineElement[JC] def before(nodes: Node | String*): Unit SVGPolylineElement[JC] def childElementCount: Int @@ -23241,7 +23008,6 @@ SVGPolylineElement[JC] def getScreenCTM(): SVGMatrix SVGPolylineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolylineElement[JC] def hasAttribute(name: String): Boolean SVGPolylineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGPolylineElement[JC] def hasAttributes(): Boolean SVGPolylineElement[JC] def hasChildNodes(): Boolean SVGPolylineElement[JC] def hasExtension(extension: String): Boolean SVGPolylineElement[JC] var id: String @@ -23354,7 +23120,6 @@ SVGRadialGradientElement[JC] def after(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def append(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def appendChild(newChild: Node): Node SVGRadialGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGRadialGradientElement[JC] def attributes: NamedNodeMap SVGRadialGradientElement[JC] def baseURI: String SVGRadialGradientElement[JC] def before(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def childElementCount: Int @@ -23391,7 +23156,6 @@ SVGRadialGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGRadialGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGRadialGradientElement[JC] def hasAttribute(name: String): Boolean SVGRadialGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGRadialGradientElement[JC] def hasAttributes(): Boolean SVGRadialGradientElement[JC] def hasChildNodes(): Boolean SVGRadialGradientElement[JC] var href: SVGAnimatedString SVGRadialGradientElement[JC] var id: String @@ -23483,7 +23247,6 @@ SVGRectElement[JC] def after(nodes: Node | String*): Unit SVGRectElement[JC] def append(nodes: Node | String*): Unit SVGRectElement[JC] def appendChild(newChild: Node): Node SVGRectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGRectElement[JC] def attributes: NamedNodeMap SVGRectElement[JC] def baseURI: String SVGRectElement[JC] def before(nodes: Node | String*): Unit SVGRectElement[JC] def childElementCount: Int @@ -23519,7 +23282,6 @@ SVGRectElement[JC] def getScreenCTM(): SVGMatrix SVGRectElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGRectElement[JC] def hasAttribute(name: String): Boolean SVGRectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGRectElement[JC] def hasAttributes(): Boolean SVGRectElement[JC] def hasChildNodes(): Boolean SVGRectElement[JC] def hasExtension(extension: String): Boolean SVGRectElement[JC] def height: SVGAnimatedLength @@ -23618,7 +23380,6 @@ SVGSVGElement[JC] def after(nodes: Node | String*): Unit SVGSVGElement[JC] def append(nodes: Node | String*): Unit SVGSVGElement[JC] def appendChild(newChild: Node): Node SVGSVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGSVGElement[JC] def attributes: NamedNodeMap SVGSVGElement[JC] def baseURI: String SVGSVGElement[JC] def before(nodes: Node | String*): Unit SVGSVGElement[JC] def checkEnclosure(element: SVGElement, rect: SVGRect): Boolean @@ -23676,7 +23437,6 @@ SVGSVGElement[JC] def getScreenCTM(): SVGMatrix SVGSVGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSVGElement[JC] def hasAttribute(name: String): Boolean SVGSVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGSVGElement[JC] def hasAttributes(): Boolean SVGSVGElement[JC] def hasChildNodes(): Boolean SVGSVGElement[JC] def hasExtension(extension: String): Boolean SVGSVGElement[JC] def height: SVGAnimatedLength @@ -23792,7 +23552,6 @@ SVGScriptElement[JC] def after(nodes: Node | String*): Unit SVGScriptElement[JC] def append(nodes: Node | String*): Unit SVGScriptElement[JC] def appendChild(newChild: Node): Node SVGScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGScriptElement[JC] def attributes: NamedNodeMap SVGScriptElement[JC] def baseURI: String SVGScriptElement[JC] def before(nodes: Node | String*): Unit SVGScriptElement[JC] def childElementCount: Int @@ -23822,7 +23581,6 @@ SVGScriptElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGScriptElement[JC] def hasAttribute(name: String): Boolean SVGScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGScriptElement[JC] def hasAttributes(): Boolean SVGScriptElement[JC] def hasChildNodes(): Boolean SVGScriptElement[JC] var href: SVGAnimatedString SVGScriptElement[JC] var id: String @@ -23908,7 +23666,6 @@ SVGStopElement[JC] def after(nodes: Node | String*): Unit SVGStopElement[JC] def append(nodes: Node | String*): Unit SVGStopElement[JC] def appendChild(newChild: Node): Node SVGStopElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGStopElement[JC] def attributes: NamedNodeMap SVGStopElement[JC] def baseURI: String SVGStopElement[JC] def before(nodes: Node | String*): Unit SVGStopElement[JC] def childElementCount: Int @@ -23938,7 +23695,6 @@ SVGStopElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGStopElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStopElement[JC] def hasAttribute(name: String): Boolean SVGStopElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGStopElement[JC] def hasAttributes(): Boolean SVGStopElement[JC] def hasChildNodes(): Boolean SVGStopElement[JC] var id: String SVGStopElement[JC] var innerHTML: String @@ -24034,7 +23790,6 @@ SVGStyleElement[JC] def after(nodes: Node | String*): Unit SVGStyleElement[JC] def append(nodes: Node | String*): Unit SVGStyleElement[JC] def appendChild(newChild: Node): Node SVGStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGStyleElement[JC] def attributes: NamedNodeMap SVGStyleElement[JC] def baseURI: String SVGStyleElement[JC] def before(nodes: Node | String*): Unit SVGStyleElement[JC] def childElementCount: Int @@ -24063,7 +23818,6 @@ SVGStyleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStyleElement[JC] def hasAttribute(name: String): Boolean SVGStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGStyleElement[JC] def hasAttributes(): Boolean SVGStyleElement[JC] def hasChildNodes(): Boolean SVGStyleElement[JC] var id: String SVGStyleElement[JC] var innerHTML: String @@ -24152,7 +23906,6 @@ SVGSwitchElement[JC] def after(nodes: Node | String*): Unit SVGSwitchElement[JC] def append(nodes: Node | String*): Unit SVGSwitchElement[JC] def appendChild(newChild: Node): Node SVGSwitchElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGSwitchElement[JC] def attributes: NamedNodeMap SVGSwitchElement[JC] def baseURI: String SVGSwitchElement[JC] def before(nodes: Node | String*): Unit SVGSwitchElement[JC] def childElementCount: Int @@ -24188,7 +23941,6 @@ SVGSwitchElement[JC] def getScreenCTM(): SVGMatrix SVGSwitchElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSwitchElement[JC] def hasAttribute(name: String): Boolean SVGSwitchElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGSwitchElement[JC] def hasAttributes(): Boolean SVGSwitchElement[JC] def hasChildNodes(): Boolean SVGSwitchElement[JC] def hasExtension(extension: String): Boolean SVGSwitchElement[JC] var id: String @@ -24281,7 +24033,6 @@ SVGSymbolElement[JC] def after(nodes: Node | String*): Unit SVGSymbolElement[JC] def append(nodes: Node | String*): Unit SVGSymbolElement[JC] def appendChild(newChild: Node): Node SVGSymbolElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGSymbolElement[JC] def attributes: NamedNodeMap SVGSymbolElement[JC] def baseURI: String SVGSymbolElement[JC] def before(nodes: Node | String*): Unit SVGSymbolElement[JC] def childElementCount: Int @@ -24312,7 +24063,6 @@ SVGSymbolElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGSymbolElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGSymbolElement[JC] def hasAttribute(name: String): Boolean SVGSymbolElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGSymbolElement[JC] def hasAttributes(): Boolean SVGSymbolElement[JC] def hasChildNodes(): Boolean SVGSymbolElement[JC] var id: String SVGSymbolElement[JC] var innerHTML: String @@ -24401,7 +24151,6 @@ SVGTSpanElement[JC] def after(nodes: Node | String*): Unit SVGTSpanElement[JC] def append(nodes: Node | String*): Unit SVGTSpanElement[JC] def appendChild(newChild: Node): Node SVGTSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTSpanElement[JC] def attributes: NamedNodeMap SVGTSpanElement[JC] def baseURI: String SVGTSpanElement[JC] def before(nodes: Node | String*): Unit SVGTSpanElement[JC] def childElementCount: Int @@ -24442,7 +24191,6 @@ SVGTSpanElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTSpanElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTSpanElement[JC] def hasAttribute(name: String): Boolean SVGTSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTSpanElement[JC] def hasAttributes(): Boolean SVGTSpanElement[JC] def hasChildNodes(): Boolean SVGTSpanElement[JC] def hasExtension(extension: String): Boolean SVGTSpanElement[JC] var id: String @@ -24543,7 +24291,6 @@ SVGTextContentElement[JC] def after(nodes: Node | String*): Unit SVGTextContentElement[JC] def append(nodes: Node | String*): Unit SVGTextContentElement[JC] def appendChild(newChild: Node): Node SVGTextContentElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextContentElement[JC] def attributes: NamedNodeMap SVGTextContentElement[JC] def baseURI: String SVGTextContentElement[JC] def before(nodes: Node | String*): Unit SVGTextContentElement[JC] def childElementCount: Int @@ -24582,7 +24329,6 @@ SVGTextContentElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextContentElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextContentElement[JC] def hasAttribute(name: String): Boolean SVGTextContentElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextContentElement[JC] def hasAttributes(): Boolean SVGTextContentElement[JC] def hasChildNodes(): Boolean SVGTextContentElement[JC] def hasExtension(extension: String): Boolean SVGTextContentElement[JC] var id: String @@ -24679,7 +24425,6 @@ SVGTextElement[JC] def after(nodes: Node | String*): Unit SVGTextElement[JC] def append(nodes: Node | String*): Unit SVGTextElement[JC] def appendChild(newChild: Node): Node SVGTextElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextElement[JC] def attributes: NamedNodeMap SVGTextElement[JC] def baseURI: String SVGTextElement[JC] def before(nodes: Node | String*): Unit SVGTextElement[JC] def childElementCount: Int @@ -24725,7 +24470,6 @@ SVGTextElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGTextElement[JC] def hasAttribute(name: String): Boolean SVGTextElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextElement[JC] def hasAttributes(): Boolean SVGTextElement[JC] def hasChildNodes(): Boolean SVGTextElement[JC] def hasExtension(extension: String): Boolean SVGTextElement[JC] var id: String @@ -24824,7 +24568,6 @@ SVGTextPathElement[JC] def after(nodes: Node | String*): Unit SVGTextPathElement[JC] def append(nodes: Node | String*): Unit SVGTextPathElement[JC] def appendChild(newChild: Node): Node SVGTextPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextPathElement[JC] def attributes: NamedNodeMap SVGTextPathElement[JC] def baseURI: String SVGTextPathElement[JC] def before(nodes: Node | String*): Unit SVGTextPathElement[JC] def childElementCount: Int @@ -24863,7 +24606,6 @@ SVGTextPathElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPathElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPathElement[JC] def hasAttribute(name: String): Boolean SVGTextPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextPathElement[JC] def hasAttributes(): Boolean SVGTextPathElement[JC] def hasChildNodes(): Boolean SVGTextPathElement[JC] def hasExtension(extension: String): Boolean SVGTextPathElement[JC] var href: SVGAnimatedString @@ -24967,7 +24709,6 @@ SVGTextPositioningElement[JC] def after(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def append(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def appendChild(newChild: Node): Node SVGTextPositioningElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTextPositioningElement[JC] def attributes: NamedNodeMap SVGTextPositioningElement[JC] def baseURI: String SVGTextPositioningElement[JC] def before(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def childElementCount: Int @@ -25008,7 +24749,6 @@ SVGTextPositioningElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPositioningElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPositioningElement[JC] def hasAttribute(name: String): Boolean SVGTextPositioningElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTextPositioningElement[JC] def hasAttributes(): Boolean SVGTextPositioningElement[JC] def hasChildNodes(): Boolean SVGTextPositioningElement[JC] def hasExtension(extension: String): Boolean SVGTextPositioningElement[JC] var id: String @@ -25105,7 +24845,6 @@ SVGTitleElement[JC] def after(nodes: Node | String*): Unit SVGTitleElement[JC] def append(nodes: Node | String*): Unit SVGTitleElement[JC] def appendChild(newChild: Node): Node SVGTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGTitleElement[JC] def attributes: NamedNodeMap SVGTitleElement[JC] def baseURI: String SVGTitleElement[JC] def before(nodes: Node | String*): Unit SVGTitleElement[JC] def childElementCount: Int @@ -25135,7 +24874,6 @@ SVGTitleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGTitleElement[JC] def hasAttribute(name: String): Boolean SVGTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGTitleElement[JC] def hasAttributes(): Boolean SVGTitleElement[JC] def hasChildNodes(): Boolean SVGTitleElement[JC] var id: String SVGTitleElement[JC] var innerHTML: String @@ -25263,7 +25001,6 @@ SVGUseElement[JC] def animatedInstanceRoot: SVGElementInstance SVGUseElement[JC] def append(nodes: Node | String*): Unit SVGUseElement[JC] def appendChild(newChild: Node): Node SVGUseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGUseElement[JC] def attributes: NamedNodeMap SVGUseElement[JC] def baseURI: String SVGUseElement[JC] def before(nodes: Node | String*): Unit SVGUseElement[JC] def childElementCount: Int @@ -25299,7 +25036,6 @@ SVGUseElement[JC] def getScreenCTM(): SVGMatrix SVGUseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGUseElement[JC] def hasAttribute(name: String): Boolean SVGUseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGUseElement[JC] def hasAttributes(): Boolean SVGUseElement[JC] def hasChildNodes(): Boolean SVGUseElement[JC] def hasExtension(extension: String): Boolean SVGUseElement[JC] def height: SVGAnimatedLength @@ -25398,7 +25134,6 @@ SVGViewElement[JC] def after(nodes: Node | String*): Unit SVGViewElement[JC] def append(nodes: Node | String*): Unit SVGViewElement[JC] def appendChild(newChild: Node): Node SVGViewElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot -SVGViewElement[JC] def attributes: NamedNodeMap SVGViewElement[JC] def baseURI: String SVGViewElement[JC] def before(nodes: Node | String*): Unit SVGViewElement[JC] def childElementCount: Int @@ -25428,7 +25163,6 @@ SVGViewElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGViewElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGViewElement[JC] def hasAttribute(name: String): Boolean SVGViewElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean -SVGViewElement[JC] def hasAttributes(): Boolean SVGViewElement[JC] def hasChildNodes(): Boolean SVGViewElement[JC] var id: String SVGViewElement[JC] var innerHTML: String @@ -25653,7 +25387,6 @@ ShadowRoot[JC] def activeElement: Element ShadowRoot[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit ShadowRoot[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit ShadowRoot[JC] def appendChild(newChild: Node): Node -ShadowRoot[JC] def attributes: NamedNodeMap ShadowRoot[JC] def baseURI: String ShadowRoot[JC] def childNodes: NodeList[Node] ShadowRoot[JC] def cloneNode(deep: Boolean?): Node @@ -25661,7 +25394,6 @@ ShadowRoot[JC] def compareDocumentPosition(other: Node): Int ShadowRoot[JC] def contains(otherNode: Node): Boolean ShadowRoot[JC] def dispatchEvent(evt: Event): Boolean ShadowRoot[JC] def firstChild: Node -ShadowRoot[JC] def hasAttributes(): Boolean ShadowRoot[JC] def hasChildNodes(): Boolean ShadowRoot[JC] var innerText: String ShadowRoot[JC] def insertBefore(newChild: Node, refChild: Node): Node @@ -25862,7 +25594,6 @@ Text[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1 Text[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit Text[JC] def appendChild(newChild: Node): Node Text[JC] def appendData(arg: String): Unit -Text[JC] def attributes: NamedNodeMap Text[JC] def baseURI: String Text[JC] def childNodes: NodeList[Node] Text[JC] def cloneNode(deep: Boolean?): Node @@ -25872,7 +25603,6 @@ Text[JC] var data: String Text[JC] def deleteData(offset: Int, count: Int): Unit Text[JC] def dispatchEvent(evt: Event): Boolean Text[JC] def firstChild: Node -Text[JC] def hasAttributes(): Boolean Text[JC] def hasChildNodes(): Boolean Text[JC] var innerText: String Text[JC] def insertBefore(newChild: Node, refChild: Node): Node diff --git a/dom/src/main/scala/org/scalajs/dom/Node.scala b/dom/src/main/scala/org/scalajs/dom/Node.scala index 8eec4ff51..cb4b7cf15 100644 --- a/dom/src/main/scala/org/scalajs/dom/Node.scala +++ b/dom/src/main/scala/org/scalajs/dom/Node.scala @@ -82,15 +82,6 @@ abstract class Node extends EventTarget { /** Returns the Document that this node belongs to. If no document is associated with it, returns null. */ def ownerDocument: Document = js.native - /** .attributes is a collection of all attribute nodes registered to the specified node. It is a NamedNodeMap,not an - * Array, so it has no Array methods and the Attr nodes' indexes may differ among browsers. To be more specific, - * attribute is a key value pair of strings that represents any information regarding that node; it cannot hold - * Object. Attribute can hold additional data/information that is required while processing custom JavaScript. There - * are many predefined attributes for different nodes used for binding events, validations, and specifying layout - * informations that are handled by browser (may vary from browser to browser). - */ - def attributes: NamedNodeMap = js.native - /** Returns the node's first child in the tree, or null if the node is childless. If the node is a Document, it * returns the first node in the list of its direct children. */ @@ -138,11 +129,6 @@ abstract class Node extends EventTarget { */ def contains(otherNode: Node): Boolean = js.native - /** hasAttributes returns a boolean value of true or false, indicating if the current element has any attributes or - * not. - */ - def hasAttributes(): Boolean = js.native - /** Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not). * Supplying null for the prefix will return the default namespace. */ From 362fd5f0c9f7034851ca9cc32b8ac3d87dd1f984 Mon Sep 17 00:00:00 2001 From: zetashift Date: Sat, 6 May 2023 17:10:49 +0200 Subject: [PATCH 12/14] Add the attributes methods to the Elements class --- api-reports/2_12.txt | 246 ++++++++++++++++++ api-reports/2_13.txt | 246 ++++++++++++++++++ .../main/scala/org/scalajs/dom/Element.scala | 12 +- 3 files changed, 503 insertions(+), 1 deletion(-) diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index 5706c45d1..af6633c5e 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -191,6 +191,7 @@ Audio[JC] def after(nodes: Node | String*): Unit Audio[JC] def append(nodes: Node | String*): Unit Audio[JC] def appendChild(newChild: Node): Node Audio[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +Audio[JC] def attributes: NamedNodeMap Audio[JC] def audioTracks: AudioTrackList Audio[JC] var autoplay: Boolean Audio[JC] def baseURI: String @@ -241,6 +242,7 @@ Audio[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Audio[JC] var gotpointercapture: js.Function1[PointerEvent, _] Audio[JC] def hasAttribute(name: String): Boolean Audio[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +Audio[JC] def hasAttributes(): Boolean Audio[JC] def hasChildNodes(): Boolean Audio[JC] var id: String Audio[JC] def initialTime: Double @@ -1969,6 +1971,7 @@ Element[JC] def after(nodes: Node | String*): Unit Element[JC] def append(nodes: Node | String*): Unit Element[JC] def appendChild(newChild: Node): Node Element[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +Element[JC] def attributes: NamedNodeMap Element[JC] def baseURI: String Element[JC] def before(nodes: Node | String*): Unit Element[JC] def childElementCount: Int @@ -1997,6 +2000,7 @@ Element[JC] def getElementsByTagName(name: String): HTMLCollection[Element] Element[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] Element[JC] def hasAttribute(name: String): Boolean Element[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +Element[JC] def hasAttributes(): Boolean Element[JC] def hasChildNodes(): Boolean Element[JC] var id: String Element[JC] var innerHTML: String @@ -2349,6 +2353,7 @@ HTMLAnchorElement[JC] def after(nodes: Node | String*): Unit HTMLAnchorElement[JC] def append(nodes: Node | String*): Unit HTMLAnchorElement[JC] def appendChild(newChild: Node): Node HTMLAnchorElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLAnchorElement[JC] def attributes: NamedNodeMap HTMLAnchorElement[JC] def baseURI: String HTMLAnchorElement[JC] def before(nodes: Node | String*): Unit HTMLAnchorElement[JC] def blur(): Unit @@ -2389,6 +2394,7 @@ HTMLAnchorElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLAnchorElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAnchorElement[JC] def hasAttribute(name: String): Boolean HTMLAnchorElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLAnchorElement[JC] def hasAttributes(): Boolean HTMLAnchorElement[JC] def hasChildNodes(): Boolean HTMLAnchorElement[JC] var hash: String HTMLAnchorElement[JC] var host: String @@ -2564,6 +2570,7 @@ HTMLAreaElement[JC] var alt: String HTMLAreaElement[JC] def append(nodes: Node | String*): Unit HTMLAreaElement[JC] def appendChild(newChild: Node): Node HTMLAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLAreaElement[JC] def attributes: NamedNodeMap HTMLAreaElement[JC] def baseURI: String HTMLAreaElement[JC] def before(nodes: Node | String*): Unit HTMLAreaElement[JC] def blur(): Unit @@ -2604,6 +2611,7 @@ HTMLAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAreaElement[JC] def hasAttribute(name: String): Boolean HTMLAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLAreaElement[JC] def hasAttributes(): Boolean HTMLAreaElement[JC] def hasChildNodes(): Boolean HTMLAreaElement[JC] var hash: String HTMLAreaElement[JC] var host: String @@ -2774,6 +2782,7 @@ HTMLAudioElement[JC] def after(nodes: Node | String*): Unit HTMLAudioElement[JC] def append(nodes: Node | String*): Unit HTMLAudioElement[JC] def appendChild(newChild: Node): Node HTMLAudioElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLAudioElement[JC] def attributes: NamedNodeMap HTMLAudioElement[JC] def audioTracks: AudioTrackList HTMLAudioElement[JC] var autoplay: Boolean HTMLAudioElement[JC] def baseURI: String @@ -2824,6 +2833,7 @@ HTMLAudioElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAudioElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAudioElement[JC] def hasAttribute(name: String): Boolean HTMLAudioElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLAudioElement[JC] def hasAttributes(): Boolean HTMLAudioElement[JC] def hasChildNodes(): Boolean HTMLAudioElement[JC] var id: String HTMLAudioElement[JC] def initialTime: Double @@ -3001,6 +3011,7 @@ HTMLBRElement[JC] def after(nodes: Node | String*): Unit HTMLBRElement[JC] def append(nodes: Node | String*): Unit HTMLBRElement[JC] def appendChild(newChild: Node): Node HTMLBRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLBRElement[JC] def attributes: NamedNodeMap HTMLBRElement[JC] def baseURI: String HTMLBRElement[JC] def before(nodes: Node | String*): Unit HTMLBRElement[JC] def blur(): Unit @@ -3040,6 +3051,7 @@ HTMLBRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLBRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBRElement[JC] def hasAttribute(name: String): Boolean HTMLBRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLBRElement[JC] def hasAttributes(): Boolean HTMLBRElement[JC] def hasChildNodes(): Boolean HTMLBRElement[JC] var id: String HTMLBRElement[JC] var innerHTML: String @@ -3200,6 +3212,7 @@ HTMLBaseElement[JC] def after(nodes: Node | String*): Unit HTMLBaseElement[JC] def append(nodes: Node | String*): Unit HTMLBaseElement[JC] def appendChild(newChild: Node): Node HTMLBaseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLBaseElement[JC] def attributes: NamedNodeMap HTMLBaseElement[JC] def baseURI: String HTMLBaseElement[JC] def before(nodes: Node | String*): Unit HTMLBaseElement[JC] def blur(): Unit @@ -3239,6 +3252,7 @@ HTMLBaseElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBaseElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBaseElement[JC] def hasAttribute(name: String): Boolean HTMLBaseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLBaseElement[JC] def hasAttributes(): Boolean HTMLBaseElement[JC] def hasChildNodes(): Boolean HTMLBaseElement[JC] var href: String HTMLBaseElement[JC] var id: String @@ -3401,6 +3415,7 @@ HTMLBodyElement[JC] def after(nodes: Node | String*): Unit HTMLBodyElement[JC] def append(nodes: Node | String*): Unit HTMLBodyElement[JC] def appendChild(newChild: Node): Node HTMLBodyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLBodyElement[JC] def attributes: NamedNodeMap HTMLBodyElement[JC] def baseURI: String HTMLBodyElement[JC] def before(nodes: Node | String*): Unit HTMLBodyElement[JC] def blur(): Unit @@ -3440,6 +3455,7 @@ HTMLBodyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBodyElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBodyElement[JC] def hasAttribute(name: String): Boolean HTMLBodyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLBodyElement[JC] def hasAttributes(): Boolean HTMLBodyElement[JC] def hasChildNodes(): Boolean HTMLBodyElement[JC] var id: String HTMLBodyElement[JC] var innerHTML: String @@ -3614,6 +3630,7 @@ HTMLButtonElement[JC] def after(nodes: Node | String*): Unit HTMLButtonElement[JC] def append(nodes: Node | String*): Unit HTMLButtonElement[JC] def appendChild(newChild: Node): Node HTMLButtonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLButtonElement[JC] def attributes: NamedNodeMap HTMLButtonElement[JC] var autofocus: Boolean HTMLButtonElement[JC] def baseURI: String HTMLButtonElement[JC] def before(nodes: Node | String*): Unit @@ -3662,6 +3679,7 @@ HTMLButtonElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLButtonElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLButtonElement[JC] def hasAttribute(name: String): Boolean HTMLButtonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLButtonElement[JC] def hasAttributes(): Boolean HTMLButtonElement[JC] def hasChildNodes(): Boolean HTMLButtonElement[JC] var id: String HTMLButtonElement[JC] var innerHTML: String @@ -3831,6 +3849,7 @@ HTMLCanvasElement[JC] def after(nodes: Node | String*): Unit HTMLCanvasElement[JC] def append(nodes: Node | String*): Unit HTMLCanvasElement[JC] def appendChild(newChild: Node): Node HTMLCanvasElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLCanvasElement[JC] def attributes: NamedNodeMap HTMLCanvasElement[JC] def baseURI: String HTMLCanvasElement[JC] def before(nodes: Node | String*): Unit HTMLCanvasElement[JC] def blur(): Unit @@ -3871,6 +3890,7 @@ HTMLCanvasElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLCanvasElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLCanvasElement[JC] def hasAttribute(name: String): Boolean HTMLCanvasElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLCanvasElement[JC] def hasAttributes(): Boolean HTMLCanvasElement[JC] def hasChildNodes(): Boolean HTMLCanvasElement[JC] var height: Int HTMLCanvasElement[JC] var id: String @@ -4038,6 +4058,7 @@ HTMLDListElement[JC] def after(nodes: Node | String*): Unit HTMLDListElement[JC] def append(nodes: Node | String*): Unit HTMLDListElement[JC] def appendChild(newChild: Node): Node HTMLDListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDListElement[JC] def attributes: NamedNodeMap HTMLDListElement[JC] def baseURI: String HTMLDListElement[JC] def before(nodes: Node | String*): Unit HTMLDListElement[JC] def blur(): Unit @@ -4077,6 +4098,7 @@ HTMLDListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLDListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDListElement[JC] def hasAttribute(name: String): Boolean HTMLDListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDListElement[JC] def hasAttributes(): Boolean HTMLDListElement[JC] def hasChildNodes(): Boolean HTMLDListElement[JC] var id: String HTMLDListElement[JC] var innerHTML: String @@ -4237,6 +4259,7 @@ HTMLDataListElement[JC] def after(nodes: Node | String*): Unit HTMLDataListElement[JC] def append(nodes: Node | String*): Unit HTMLDataListElement[JC] def appendChild(newChild: Node): Node HTMLDataListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDataListElement[JC] def attributes: NamedNodeMap HTMLDataListElement[JC] def baseURI: String HTMLDataListElement[JC] def before(nodes: Node | String*): Unit HTMLDataListElement[JC] def blur(): Unit @@ -4276,6 +4299,7 @@ HTMLDataListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLDataListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDataListElement[JC] def hasAttribute(name: String): Boolean HTMLDataListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDataListElement[JC] def hasAttributes(): Boolean HTMLDataListElement[JC] def hasChildNodes(): Boolean HTMLDataListElement[JC] var id: String HTMLDataListElement[JC] var innerHTML: String @@ -4437,6 +4461,7 @@ HTMLDialogElement[JC] def after(nodes: Node | String*): Unit HTMLDialogElement[JC] def append(nodes: Node | String*): Unit HTMLDialogElement[JC] def appendChild(newChild: Node): Node HTMLDialogElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDialogElement[JC] def attributes: NamedNodeMap HTMLDialogElement[JC] def baseURI: String HTMLDialogElement[JC] def before(nodes: Node | String*): Unit HTMLDialogElement[JC] def blur(): Unit @@ -4477,6 +4502,7 @@ HTMLDialogElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLDialogElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDialogElement[JC] def hasAttribute(name: String): Boolean HTMLDialogElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDialogElement[JC] def hasAttributes(): Boolean HTMLDialogElement[JC] def hasChildNodes(): Boolean HTMLDialogElement[JC] var id: String HTMLDialogElement[JC] var innerHTML: String @@ -4641,6 +4667,7 @@ HTMLDivElement[JC] def after(nodes: Node | String*): Unit HTMLDivElement[JC] def append(nodes: Node | String*): Unit HTMLDivElement[JC] def appendChild(newChild: Node): Node HTMLDivElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDivElement[JC] def attributes: NamedNodeMap HTMLDivElement[JC] def baseURI: String HTMLDivElement[JC] def before(nodes: Node | String*): Unit HTMLDivElement[JC] def blur(): Unit @@ -4680,6 +4707,7 @@ HTMLDivElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLDivElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDivElement[JC] def hasAttribute(name: String): Boolean HTMLDivElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDivElement[JC] def hasAttributes(): Boolean HTMLDivElement[JC] def hasChildNodes(): Boolean HTMLDivElement[JC] var id: String HTMLDivElement[JC] var innerHTML: String @@ -5038,6 +5066,7 @@ HTMLElement[JC] def after(nodes: Node | String*): Unit HTMLElement[JC] def append(nodes: Node | String*): Unit HTMLElement[JC] def appendChild(newChild: Node): Node HTMLElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLElement[JC] def attributes: NamedNodeMap HTMLElement[JC] def baseURI: String HTMLElement[JC] def before(nodes: Node | String*): Unit HTMLElement[JC] def blur(): Unit @@ -5077,6 +5106,7 @@ HTMLElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: Stri HTMLElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLElement[JC] def hasAttribute(name: String): Boolean HTMLElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLElement[JC] def hasAttributes(): Boolean HTMLElement[JC] def hasChildNodes(): Boolean HTMLElement[JC] var id: String HTMLElement[JC] var innerHTML: String @@ -5237,6 +5267,7 @@ HTMLEmbedElement[JC] def after(nodes: Node | String*): Unit HTMLEmbedElement[JC] def append(nodes: Node | String*): Unit HTMLEmbedElement[JC] def appendChild(newChild: Node): Node HTMLEmbedElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLEmbedElement[JC] def attributes: NamedNodeMap HTMLEmbedElement[JC] def baseURI: String HTMLEmbedElement[JC] def before(nodes: Node | String*): Unit HTMLEmbedElement[JC] def blur(): Unit @@ -5277,6 +5308,7 @@ HTMLEmbedElement[JC] def getSVGDocument(): Document HTMLEmbedElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLEmbedElement[JC] def hasAttribute(name: String): Boolean HTMLEmbedElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLEmbedElement[JC] def hasAttributes(): Boolean HTMLEmbedElement[JC] def hasChildNodes(): Boolean HTMLEmbedElement[JC] var height: String HTMLEmbedElement[JC] var id: String @@ -5440,6 +5472,7 @@ HTMLFieldSetElement[JC] def after(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def append(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def appendChild(newChild: Node): Node HTMLFieldSetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLFieldSetElement[JC] def attributes: NamedNodeMap HTMLFieldSetElement[JC] def baseURI: String HTMLFieldSetElement[JC] def before(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def blur(): Unit @@ -5482,6 +5515,7 @@ HTMLFieldSetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLFieldSetElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFieldSetElement[JC] def hasAttribute(name: String): Boolean HTMLFieldSetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLFieldSetElement[JC] def hasAttributes(): Boolean HTMLFieldSetElement[JC] def hasChildNodes(): Boolean HTMLFieldSetElement[JC] var id: String HTMLFieldSetElement[JC] var innerHTML: String @@ -5654,6 +5688,7 @@ HTMLFormElement[JC] def append(nodes: Node | String*): Unit HTMLFormElement[JC] def appendChild(newChild: Node): Node HTMLFormElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLFormElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLFormElement[JC] def attributes: NamedNodeMap HTMLFormElement[JC] var autocomplete: String HTMLFormElement[JC] def baseURI: String HTMLFormElement[JC] def before(nodes: Node | String*): Unit @@ -5698,6 +5733,7 @@ HTMLFormElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLFormElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFormElement[JC] def hasAttribute(name: String): Boolean HTMLFormElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLFormElement[JC] def hasAttributes(): Boolean HTMLFormElement[JC] def hasChildNodes(): Boolean HTMLFormElement[JC] var id: String HTMLFormElement[JC] var innerHTML: String @@ -5869,6 +5905,7 @@ HTMLHRElement[JC] def after(nodes: Node | String*): Unit HTMLHRElement[JC] def append(nodes: Node | String*): Unit HTMLHRElement[JC] def appendChild(newChild: Node): Node HTMLHRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHRElement[JC] def attributes: NamedNodeMap HTMLHRElement[JC] def baseURI: String HTMLHRElement[JC] def before(nodes: Node | String*): Unit HTMLHRElement[JC] def blur(): Unit @@ -5908,6 +5945,7 @@ HTMLHRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLHRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHRElement[JC] def hasAttribute(name: String): Boolean HTMLHRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHRElement[JC] def hasAttributes(): Boolean HTMLHRElement[JC] def hasChildNodes(): Boolean HTMLHRElement[JC] var id: String HTMLHRElement[JC] var innerHTML: String @@ -6068,6 +6106,7 @@ HTMLHeadElement[JC] def after(nodes: Node | String*): Unit HTMLHeadElement[JC] def append(nodes: Node | String*): Unit HTMLHeadElement[JC] def appendChild(newChild: Node): Node HTMLHeadElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHeadElement[JC] def attributes: NamedNodeMap HTMLHeadElement[JC] def baseURI: String HTMLHeadElement[JC] def before(nodes: Node | String*): Unit HTMLHeadElement[JC] def blur(): Unit @@ -6107,6 +6146,7 @@ HTMLHeadElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHeadElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadElement[JC] def hasAttribute(name: String): Boolean HTMLHeadElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHeadElement[JC] def hasAttributes(): Boolean HTMLHeadElement[JC] def hasChildNodes(): Boolean HTMLHeadElement[JC] var id: String HTMLHeadElement[JC] var innerHTML: String @@ -6267,6 +6307,7 @@ HTMLHeadingElement[JC] def after(nodes: Node | String*): Unit HTMLHeadingElement[JC] def append(nodes: Node | String*): Unit HTMLHeadingElement[JC] def appendChild(newChild: Node): Node HTMLHeadingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHeadingElement[JC] def attributes: NamedNodeMap HTMLHeadingElement[JC] def baseURI: String HTMLHeadingElement[JC] def before(nodes: Node | String*): Unit HTMLHeadingElement[JC] def blur(): Unit @@ -6306,6 +6347,7 @@ HTMLHeadingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLHeadingElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadingElement[JC] def hasAttribute(name: String): Boolean HTMLHeadingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHeadingElement[JC] def hasAttributes(): Boolean HTMLHeadingElement[JC] def hasChildNodes(): Boolean HTMLHeadingElement[JC] var id: String HTMLHeadingElement[JC] var innerHTML: String @@ -6466,6 +6508,7 @@ HTMLHtmlElement[JC] def after(nodes: Node | String*): Unit HTMLHtmlElement[JC] def append(nodes: Node | String*): Unit HTMLHtmlElement[JC] def appendChild(newChild: Node): Node HTMLHtmlElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHtmlElement[JC] def attributes: NamedNodeMap HTMLHtmlElement[JC] def baseURI: String HTMLHtmlElement[JC] def before(nodes: Node | String*): Unit HTMLHtmlElement[JC] def blur(): Unit @@ -6505,6 +6548,7 @@ HTMLHtmlElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHtmlElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHtmlElement[JC] def hasAttribute(name: String): Boolean HTMLHtmlElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHtmlElement[JC] def hasAttributes(): Boolean HTMLHtmlElement[JC] def hasChildNodes(): Boolean HTMLHtmlElement[JC] var id: String HTMLHtmlElement[JC] var innerHTML: String @@ -6665,6 +6709,7 @@ HTMLIFrameElement[JC] def after(nodes: Node | String*): Unit HTMLIFrameElement[JC] def append(nodes: Node | String*): Unit HTMLIFrameElement[JC] def appendChild(newChild: Node): Node HTMLIFrameElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLIFrameElement[JC] def attributes: NamedNodeMap HTMLIFrameElement[JC] def baseURI: String HTMLIFrameElement[JC] def before(nodes: Node | String*): Unit HTMLIFrameElement[JC] def blur(): Unit @@ -6708,6 +6753,7 @@ HTMLIFrameElement[JC] def getSVGDocument(): Document HTMLIFrameElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLIFrameElement[JC] def hasAttribute(name: String): Boolean HTMLIFrameElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLIFrameElement[JC] def hasAttributes(): Boolean HTMLIFrameElement[JC] def hasChildNodes(): Boolean HTMLIFrameElement[JC] var height: String HTMLIFrameElement[JC] var id: String @@ -6876,6 +6922,7 @@ HTMLImageElement[JC] var alt: String HTMLImageElement[JC] def append(nodes: Node | String*): Unit HTMLImageElement[JC] def appendChild(newChild: Node): Node HTMLImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLImageElement[JC] def attributes: NamedNodeMap HTMLImageElement[JC] def baseURI: String HTMLImageElement[JC] def before(nodes: Node | String*): Unit HTMLImageElement[JC] def blur(): Unit @@ -6917,6 +6964,7 @@ HTMLImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLImageElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLImageElement[JC] def hasAttribute(name: String): Boolean HTMLImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLImageElement[JC] def hasAttributes(): Boolean HTMLImageElement[JC] def hasChildNodes(): Boolean HTMLImageElement[JC] var height: Int HTMLImageElement[JC] var href: String @@ -7093,6 +7141,7 @@ HTMLInputElement[JC] var alt: String HTMLInputElement[JC] def append(nodes: Node | String*): Unit HTMLInputElement[JC] def appendChild(newChild: Node): Node HTMLInputElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLInputElement[JC] def attributes: NamedNodeMap HTMLInputElement[JC] var autocomplete: String HTMLInputElement[JC] var autofocus: Boolean HTMLInputElement[JC] def baseURI: String @@ -7146,6 +7195,7 @@ HTMLInputElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLInputElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLInputElement[JC] def hasAttribute(name: String): Boolean HTMLInputElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLInputElement[JC] def hasAttributes(): Boolean HTMLInputElement[JC] def hasChildNodes(): Boolean HTMLInputElement[JC] var height: String HTMLInputElement[JC] var id: String @@ -7337,6 +7387,7 @@ HTMLLIElement[JC] def after(nodes: Node | String*): Unit HTMLLIElement[JC] def append(nodes: Node | String*): Unit HTMLLIElement[JC] def appendChild(newChild: Node): Node HTMLLIElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLIElement[JC] def attributes: NamedNodeMap HTMLLIElement[JC] def baseURI: String HTMLLIElement[JC] def before(nodes: Node | String*): Unit HTMLLIElement[JC] def blur(): Unit @@ -7376,6 +7427,7 @@ HTMLLIElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLLIElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLIElement[JC] def hasAttribute(name: String): Boolean HTMLLIElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLIElement[JC] def hasAttributes(): Boolean HTMLLIElement[JC] def hasChildNodes(): Boolean HTMLLIElement[JC] var id: String HTMLLIElement[JC] var innerHTML: String @@ -7537,6 +7589,7 @@ HTMLLabelElement[JC] def after(nodes: Node | String*): Unit HTMLLabelElement[JC] def append(nodes: Node | String*): Unit HTMLLabelElement[JC] def appendChild(newChild: Node): Node HTMLLabelElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLabelElement[JC] def attributes: NamedNodeMap HTMLLabelElement[JC] def baseURI: String HTMLLabelElement[JC] def before(nodes: Node | String*): Unit HTMLLabelElement[JC] def blur(): Unit @@ -7577,6 +7630,7 @@ HTMLLabelElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLabelElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLabelElement[JC] def hasAttribute(name: String): Boolean HTMLLabelElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLabelElement[JC] def hasAttributes(): Boolean HTMLLabelElement[JC] def hasChildNodes(): Boolean HTMLLabelElement[JC] var htmlFor: String HTMLLabelElement[JC] var id: String @@ -7739,6 +7793,7 @@ HTMLLegendElement[JC] var align: String HTMLLegendElement[JC] def append(nodes: Node | String*): Unit HTMLLegendElement[JC] def appendChild(newChild: Node): Node HTMLLegendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLegendElement[JC] def attributes: NamedNodeMap HTMLLegendElement[JC] def baseURI: String HTMLLegendElement[JC] def before(nodes: Node | String*): Unit HTMLLegendElement[JC] def blur(): Unit @@ -7779,6 +7834,7 @@ HTMLLegendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLLegendElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLegendElement[JC] def hasAttribute(name: String): Boolean HTMLLegendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLegendElement[JC] def hasAttributes(): Boolean HTMLLegendElement[JC] def hasChildNodes(): Boolean HTMLLegendElement[JC] var id: String HTMLLegendElement[JC] var innerHTML: String @@ -7939,6 +7995,7 @@ HTMLLinkElement[JC] def after(nodes: Node | String*): Unit HTMLLinkElement[JC] def append(nodes: Node | String*): Unit HTMLLinkElement[JC] def appendChild(newChild: Node): Node HTMLLinkElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLinkElement[JC] def attributes: NamedNodeMap HTMLLinkElement[JC] def baseURI: String HTMLLinkElement[JC] def before(nodes: Node | String*): Unit HTMLLinkElement[JC] def blur(): Unit @@ -7978,6 +8035,7 @@ HTMLLinkElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLinkElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLinkElement[JC] def hasAttribute(name: String): Boolean HTMLLinkElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLinkElement[JC] def hasAttributes(): Boolean HTMLLinkElement[JC] def hasChildNodes(): Boolean HTMLLinkElement[JC] var href: String HTMLLinkElement[JC] var hreflang: String @@ -8146,6 +8204,7 @@ HTMLMapElement[JC] def after(nodes: Node | String*): Unit HTMLMapElement[JC] def append(nodes: Node | String*): Unit HTMLMapElement[JC] def appendChild(newChild: Node): Node HTMLMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMapElement[JC] def attributes: NamedNodeMap HTMLMapElement[JC] def baseURI: String HTMLMapElement[JC] def before(nodes: Node | String*): Unit HTMLMapElement[JC] def blur(): Unit @@ -8185,6 +8244,7 @@ HTMLMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLMapElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMapElement[JC] def hasAttribute(name: String): Boolean HTMLMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMapElement[JC] def hasAttributes(): Boolean HTMLMapElement[JC] def hasChildNodes(): Boolean HTMLMapElement[JC] var id: String HTMLMapElement[JC] var innerHTML: String @@ -8346,6 +8406,7 @@ HTMLMediaElement[JC] def after(nodes: Node | String*): Unit HTMLMediaElement[JC] def append(nodes: Node | String*): Unit HTMLMediaElement[JC] def appendChild(newChild: Node): Node HTMLMediaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMediaElement[JC] def attributes: NamedNodeMap HTMLMediaElement[JC] def audioTracks: AudioTrackList HTMLMediaElement[JC] var autoplay: Boolean HTMLMediaElement[JC] def baseURI: String @@ -8396,6 +8457,7 @@ HTMLMediaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMediaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMediaElement[JC] def hasAttribute(name: String): Boolean HTMLMediaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMediaElement[JC] def hasAttributes(): Boolean HTMLMediaElement[JC] def hasChildNodes(): Boolean HTMLMediaElement[JC] var id: String HTMLMediaElement[JC] def initialTime: Double @@ -8582,6 +8644,7 @@ HTMLMenuElement[JC] def after(nodes: Node | String*): Unit HTMLMenuElement[JC] def append(nodes: Node | String*): Unit HTMLMenuElement[JC] def appendChild(newChild: Node): Node HTMLMenuElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMenuElement[JC] def attributes: NamedNodeMap HTMLMenuElement[JC] def baseURI: String HTMLMenuElement[JC] def before(nodes: Node | String*): Unit HTMLMenuElement[JC] def blur(): Unit @@ -8621,6 +8684,7 @@ HTMLMenuElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMenuElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMenuElement[JC] def hasAttribute(name: String): Boolean HTMLMenuElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMenuElement[JC] def hasAttributes(): Boolean HTMLMenuElement[JC] def hasChildNodes(): Boolean HTMLMenuElement[JC] var id: String HTMLMenuElement[JC] var innerHTML: String @@ -8782,6 +8846,7 @@ HTMLMetaElement[JC] def after(nodes: Node | String*): Unit HTMLMetaElement[JC] def append(nodes: Node | String*): Unit HTMLMetaElement[JC] def appendChild(newChild: Node): Node HTMLMetaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMetaElement[JC] def attributes: NamedNodeMap HTMLMetaElement[JC] def baseURI: String HTMLMetaElement[JC] def before(nodes: Node | String*): Unit HTMLMetaElement[JC] def blur(): Unit @@ -8823,6 +8888,7 @@ HTMLMetaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMetaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMetaElement[JC] def hasAttribute(name: String): Boolean HTMLMetaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMetaElement[JC] def hasAttributes(): Boolean HTMLMetaElement[JC] def hasChildNodes(): Boolean HTMLMetaElement[JC] var httpEquiv: String HTMLMetaElement[JC] var id: String @@ -8986,6 +9052,7 @@ HTMLModElement[JC] def after(nodes: Node | String*): Unit HTMLModElement[JC] def append(nodes: Node | String*): Unit HTMLModElement[JC] def appendChild(newChild: Node): Node HTMLModElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLModElement[JC] def attributes: NamedNodeMap HTMLModElement[JC] def baseURI: String HTMLModElement[JC] def before(nodes: Node | String*): Unit HTMLModElement[JC] def blur(): Unit @@ -9027,6 +9094,7 @@ HTMLModElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLModElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLModElement[JC] def hasAttribute(name: String): Boolean HTMLModElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLModElement[JC] def hasAttributes(): Boolean HTMLModElement[JC] def hasChildNodes(): Boolean HTMLModElement[JC] var id: String HTMLModElement[JC] var innerHTML: String @@ -9187,6 +9255,7 @@ HTMLOListElement[JC] def after(nodes: Node | String*): Unit HTMLOListElement[JC] def append(nodes: Node | String*): Unit HTMLOListElement[JC] def appendChild(newChild: Node): Node HTMLOListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLOListElement[JC] def attributes: NamedNodeMap HTMLOListElement[JC] def baseURI: String HTMLOListElement[JC] def before(nodes: Node | String*): Unit HTMLOListElement[JC] def blur(): Unit @@ -9226,6 +9295,7 @@ HTMLOListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLOListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOListElement[JC] def hasAttribute(name: String): Boolean HTMLOListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLOListElement[JC] def hasAttributes(): Boolean HTMLOListElement[JC] def hasChildNodes(): Boolean HTMLOListElement[JC] var id: String HTMLOListElement[JC] var innerHTML: String @@ -9390,6 +9460,7 @@ HTMLObjectElement[JC] var altHtml: String HTMLObjectElement[JC] def append(nodes: Node | String*): Unit HTMLObjectElement[JC] def appendChild(newChild: Node): Node HTMLObjectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLObjectElement[JC] def attributes: NamedNodeMap HTMLObjectElement[JC] def baseURI: String HTMLObjectElement[JC] def before(nodes: Node | String*): Unit HTMLObjectElement[JC] def blur(): Unit @@ -9435,6 +9506,7 @@ HTMLObjectElement[JC] def getSVGDocument(): Document HTMLObjectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLObjectElement[JC] def hasAttribute(name: String): Boolean HTMLObjectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLObjectElement[JC] def hasAttributes(): Boolean HTMLObjectElement[JC] def hasChildNodes(): Boolean HTMLObjectElement[JC] var height: String HTMLObjectElement[JC] var id: String @@ -9606,6 +9678,7 @@ HTMLOptGroupElement[JC] def after(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def append(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def appendChild(newChild: Node): Node HTMLOptGroupElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLOptGroupElement[JC] def attributes: NamedNodeMap HTMLOptGroupElement[JC] def baseURI: String HTMLOptGroupElement[JC] def before(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def blur(): Unit @@ -9646,6 +9719,7 @@ HTMLOptGroupElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLOptGroupElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptGroupElement[JC] def hasAttribute(name: String): Boolean HTMLOptGroupElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLOptGroupElement[JC] def hasAttributes(): Boolean HTMLOptGroupElement[JC] def hasChildNodes(): Boolean HTMLOptGroupElement[JC] var id: String HTMLOptGroupElement[JC] var innerHTML: String @@ -9807,6 +9881,7 @@ HTMLOptionElement[JC] def after(nodes: Node | String*): Unit HTMLOptionElement[JC] def append(nodes: Node | String*): Unit HTMLOptionElement[JC] def appendChild(newChild: Node): Node HTMLOptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLOptionElement[JC] def attributes: NamedNodeMap HTMLOptionElement[JC] def baseURI: String HTMLOptionElement[JC] def before(nodes: Node | String*): Unit HTMLOptionElement[JC] def blur(): Unit @@ -9850,6 +9925,7 @@ HTMLOptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLOptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptionElement[JC] def hasAttribute(name: String): Boolean HTMLOptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLOptionElement[JC] def hasAttributes(): Boolean HTMLOptionElement[JC] def hasChildNodes(): Boolean HTMLOptionElement[JC] var id: String HTMLOptionElement[JC] def index: Int @@ -10019,6 +10095,7 @@ HTMLParagraphElement[JC] def after(nodes: Node | String*): Unit HTMLParagraphElement[JC] def append(nodes: Node | String*): Unit HTMLParagraphElement[JC] def appendChild(newChild: Node): Node HTMLParagraphElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLParagraphElement[JC] def attributes: NamedNodeMap HTMLParagraphElement[JC] def baseURI: String HTMLParagraphElement[JC] def before(nodes: Node | String*): Unit HTMLParagraphElement[JC] def blur(): Unit @@ -10058,6 +10135,7 @@ HTMLParagraphElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLParagraphElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParagraphElement[JC] def hasAttribute(name: String): Boolean HTMLParagraphElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLParagraphElement[JC] def hasAttributes(): Boolean HTMLParagraphElement[JC] def hasChildNodes(): Boolean HTMLParagraphElement[JC] var id: String HTMLParagraphElement[JC] var innerHTML: String @@ -10218,6 +10296,7 @@ HTMLParamElement[JC] def after(nodes: Node | String*): Unit HTMLParamElement[JC] def append(nodes: Node | String*): Unit HTMLParamElement[JC] def appendChild(newChild: Node): Node HTMLParamElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLParamElement[JC] def attributes: NamedNodeMap HTMLParamElement[JC] def baseURI: String HTMLParamElement[JC] def before(nodes: Node | String*): Unit HTMLParamElement[JC] def blur(): Unit @@ -10257,6 +10336,7 @@ HTMLParamElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLParamElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParamElement[JC] def hasAttribute(name: String): Boolean HTMLParamElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLParamElement[JC] def hasAttributes(): Boolean HTMLParamElement[JC] def hasChildNodes(): Boolean HTMLParamElement[JC] var id: String HTMLParamElement[JC] var innerHTML: String @@ -10419,6 +10499,7 @@ HTMLPreElement[JC] def after(nodes: Node | String*): Unit HTMLPreElement[JC] def append(nodes: Node | String*): Unit HTMLPreElement[JC] def appendChild(newChild: Node): Node HTMLPreElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLPreElement[JC] def attributes: NamedNodeMap HTMLPreElement[JC] def baseURI: String HTMLPreElement[JC] def before(nodes: Node | String*): Unit HTMLPreElement[JC] def blur(): Unit @@ -10458,6 +10539,7 @@ HTMLPreElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLPreElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLPreElement[JC] def hasAttribute(name: String): Boolean HTMLPreElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLPreElement[JC] def hasAttributes(): Boolean HTMLPreElement[JC] def hasChildNodes(): Boolean HTMLPreElement[JC] var id: String HTMLPreElement[JC] var innerHTML: String @@ -10618,6 +10700,7 @@ HTMLProgressElement[JC] def after(nodes: Node | String*): Unit HTMLProgressElement[JC] def append(nodes: Node | String*): Unit HTMLProgressElement[JC] def appendChild(newChild: Node): Node HTMLProgressElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLProgressElement[JC] def attributes: NamedNodeMap HTMLProgressElement[JC] def baseURI: String HTMLProgressElement[JC] def before(nodes: Node | String*): Unit HTMLProgressElement[JC] def blur(): Unit @@ -10658,6 +10741,7 @@ HTMLProgressElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLProgressElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLProgressElement[JC] def hasAttribute(name: String): Boolean HTMLProgressElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLProgressElement[JC] def hasAttributes(): Boolean HTMLProgressElement[JC] def hasChildNodes(): Boolean HTMLProgressElement[JC] var id: String HTMLProgressElement[JC] var innerHTML: String @@ -10821,6 +10905,7 @@ HTMLQuoteElement[JC] def after(nodes: Node | String*): Unit HTMLQuoteElement[JC] def append(nodes: Node | String*): Unit HTMLQuoteElement[JC] def appendChild(newChild: Node): Node HTMLQuoteElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLQuoteElement[JC] def attributes: NamedNodeMap HTMLQuoteElement[JC] def baseURI: String HTMLQuoteElement[JC] def before(nodes: Node | String*): Unit HTMLQuoteElement[JC] def blur(): Unit @@ -10862,6 +10947,7 @@ HTMLQuoteElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLQuoteElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLQuoteElement[JC] def hasAttribute(name: String): Boolean HTMLQuoteElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLQuoteElement[JC] def hasAttributes(): Boolean HTMLQuoteElement[JC] def hasChildNodes(): Boolean HTMLQuoteElement[JC] var id: String HTMLQuoteElement[JC] var innerHTML: String @@ -11023,6 +11109,7 @@ HTMLScriptElement[JC] def append(nodes: Node | String*): Unit HTMLScriptElement[JC] def appendChild(newChild: Node): Node HTMLScriptElement[JC] var async: Boolean HTMLScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLScriptElement[JC] def attributes: NamedNodeMap HTMLScriptElement[JC] def baseURI: String HTMLScriptElement[JC] def before(nodes: Node | String*): Unit HTMLScriptElement[JC] def blur(): Unit @@ -11065,6 +11152,7 @@ HTMLScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLScriptElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLScriptElement[JC] def hasAttribute(name: String): Boolean HTMLScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLScriptElement[JC] def hasAttributes(): Boolean HTMLScriptElement[JC] def hasChildNodes(): Boolean HTMLScriptElement[JC] var id: String HTMLScriptElement[JC] var innerHTML: String @@ -11231,6 +11319,7 @@ HTMLSelectElement[JC] def append(nodes: Node | String*): Unit HTMLSelectElement[JC] def appendChild(newChild: Node): Node HTMLSelectElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLSelectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLSelectElement[JC] def attributes: NamedNodeMap HTMLSelectElement[JC] var autofocus: Boolean HTMLSelectElement[JC] def baseURI: String HTMLSelectElement[JC] def before(nodes: Node | String*): Unit @@ -11274,6 +11363,7 @@ HTMLSelectElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSelectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSelectElement[JC] def hasAttribute(name: String): Boolean HTMLSelectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLSelectElement[JC] def hasAttributes(): Boolean HTMLSelectElement[JC] def hasChildNodes(): Boolean HTMLSelectElement[JC] var id: String HTMLSelectElement[JC] var innerHTML: String @@ -11452,6 +11542,7 @@ HTMLSourceElement[JC] def after(nodes: Node | String*): Unit HTMLSourceElement[JC] def append(nodes: Node | String*): Unit HTMLSourceElement[JC] def appendChild(newChild: Node): Node HTMLSourceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLSourceElement[JC] def attributes: NamedNodeMap HTMLSourceElement[JC] def baseURI: String HTMLSourceElement[JC] def before(nodes: Node | String*): Unit HTMLSourceElement[JC] def blur(): Unit @@ -11491,6 +11582,7 @@ HTMLSourceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSourceElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSourceElement[JC] def hasAttribute(name: String): Boolean HTMLSourceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLSourceElement[JC] def hasAttributes(): Boolean HTMLSourceElement[JC] def hasChildNodes(): Boolean HTMLSourceElement[JC] var id: String HTMLSourceElement[JC] var innerHTML: String @@ -11654,6 +11746,7 @@ HTMLSpanElement[JC] def after(nodes: Node | String*): Unit HTMLSpanElement[JC] def append(nodes: Node | String*): Unit HTMLSpanElement[JC] def appendChild(newChild: Node): Node HTMLSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLSpanElement[JC] def attributes: NamedNodeMap HTMLSpanElement[JC] def baseURI: String HTMLSpanElement[JC] def before(nodes: Node | String*): Unit HTMLSpanElement[JC] def blur(): Unit @@ -11693,6 +11786,7 @@ HTMLSpanElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLSpanElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSpanElement[JC] def hasAttribute(name: String): Boolean HTMLSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLSpanElement[JC] def hasAttributes(): Boolean HTMLSpanElement[JC] def hasChildNodes(): Boolean HTMLSpanElement[JC] var id: String HTMLSpanElement[JC] var innerHTML: String @@ -11853,6 +11947,7 @@ HTMLStyleElement[JC] def after(nodes: Node | String*): Unit HTMLStyleElement[JC] def append(nodes: Node | String*): Unit HTMLStyleElement[JC] def appendChild(newChild: Node): Node HTMLStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLStyleElement[JC] def attributes: NamedNodeMap HTMLStyleElement[JC] def baseURI: String HTMLStyleElement[JC] def before(nodes: Node | String*): Unit HTMLStyleElement[JC] def blur(): Unit @@ -11892,6 +11987,7 @@ HTMLStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLStyleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLStyleElement[JC] def hasAttribute(name: String): Boolean HTMLStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLStyleElement[JC] def hasAttributes(): Boolean HTMLStyleElement[JC] def hasChildNodes(): Boolean HTMLStyleElement[JC] var id: String HTMLStyleElement[JC] var innerHTML: String @@ -12056,6 +12152,7 @@ HTMLTableCaptionElement[JC] def after(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def append(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def appendChild(newChild: Node): Node HTMLTableCaptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableCaptionElement[JC] def attributes: NamedNodeMap HTMLTableCaptionElement[JC] def baseURI: String HTMLTableCaptionElement[JC] def before(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def blur(): Unit @@ -12095,6 +12192,7 @@ HTMLTableCaptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableCaptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCaptionElement[JC] def hasAttribute(name: String): Boolean HTMLTableCaptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableCaptionElement[JC] def hasAttributes(): Boolean HTMLTableCaptionElement[JC] def hasChildNodes(): Boolean HTMLTableCaptionElement[JC] var id: String HTMLTableCaptionElement[JC] var innerHTML: String @@ -12255,6 +12353,7 @@ HTMLTableCellElement[JC] def after(nodes: Node | String*): Unit HTMLTableCellElement[JC] def append(nodes: Node | String*): Unit HTMLTableCellElement[JC] def appendChild(newChild: Node): Node HTMLTableCellElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableCellElement[JC] def attributes: NamedNodeMap HTMLTableCellElement[JC] def baseURI: String HTMLTableCellElement[JC] def before(nodes: Node | String*): Unit HTMLTableCellElement[JC] def blur(): Unit @@ -12296,6 +12395,7 @@ HTMLTableCellElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLTableCellElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCellElement[JC] def hasAttribute(name: String): Boolean HTMLTableCellElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableCellElement[JC] def hasAttributes(): Boolean HTMLTableCellElement[JC] def hasChildNodes(): Boolean HTMLTableCellElement[JC] def headers: String HTMLTableCellElement[JC] var id: String @@ -12458,6 +12558,7 @@ HTMLTableColElement[JC] def after(nodes: Node | String*): Unit HTMLTableColElement[JC] def append(nodes: Node | String*): Unit HTMLTableColElement[JC] def appendChild(newChild: Node): Node HTMLTableColElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableColElement[JC] def attributes: NamedNodeMap HTMLTableColElement[JC] def baseURI: String HTMLTableColElement[JC] def before(nodes: Node | String*): Unit HTMLTableColElement[JC] def blur(): Unit @@ -12497,6 +12598,7 @@ HTMLTableColElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableColElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableColElement[JC] def hasAttribute(name: String): Boolean HTMLTableColElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableColElement[JC] def hasAttributes(): Boolean HTMLTableColElement[JC] def hasChildNodes(): Boolean HTMLTableColElement[JC] var id: String HTMLTableColElement[JC] var innerHTML: String @@ -12658,6 +12760,7 @@ HTMLTableElement[JC] def after(nodes: Node | String*): Unit HTMLTableElement[JC] def append(nodes: Node | String*): Unit HTMLTableElement[JC] def appendChild(newChild: Node): Node HTMLTableElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableElement[JC] def attributes: NamedNodeMap HTMLTableElement[JC] def baseURI: String HTMLTableElement[JC] def before(nodes: Node | String*): Unit HTMLTableElement[JC] def blur(): Unit @@ -12706,6 +12809,7 @@ HTMLTableElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTableElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableElement[JC] def hasAttribute(name: String): Boolean HTMLTableElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableElement[JC] def hasAttributes(): Boolean HTMLTableElement[JC] def hasChildNodes(): Boolean HTMLTableElement[JC] var id: String HTMLTableElement[JC] var innerHTML: String @@ -12872,6 +12976,7 @@ HTMLTableRowElement[JC] def after(nodes: Node | String*): Unit HTMLTableRowElement[JC] def append(nodes: Node | String*): Unit HTMLTableRowElement[JC] def appendChild(newChild: Node): Node HTMLTableRowElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableRowElement[JC] def attributes: NamedNodeMap HTMLTableRowElement[JC] def baseURI: String HTMLTableRowElement[JC] def before(nodes: Node | String*): Unit HTMLTableRowElement[JC] def blur(): Unit @@ -12916,6 +13021,7 @@ HTMLTableRowElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableRowElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableRowElement[JC] def hasAttribute(name: String): Boolean HTMLTableRowElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableRowElement[JC] def hasAttributes(): Boolean HTMLTableRowElement[JC] def hasChildNodes(): Boolean HTMLTableRowElement[JC] var height: js.Any HTMLTableRowElement[JC] var id: String @@ -13080,6 +13186,7 @@ HTMLTableSectionElement[JC] def after(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def append(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def appendChild(newChild: Node): Node HTMLTableSectionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableSectionElement[JC] def attributes: NamedNodeMap HTMLTableSectionElement[JC] def baseURI: String HTMLTableSectionElement[JC] def before(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def blur(): Unit @@ -13120,6 +13227,7 @@ HTMLTableSectionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableSectionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableSectionElement[JC] def hasAttribute(name: String): Boolean HTMLTableSectionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableSectionElement[JC] def hasAttributes(): Boolean HTMLTableSectionElement[JC] def hasChildNodes(): Boolean HTMLTableSectionElement[JC] var id: String HTMLTableSectionElement[JC] var innerHTML: String @@ -13283,6 +13391,7 @@ HTMLTemplateElement[JC] def after(nodes: Node | String*): Unit HTMLTemplateElement[JC] def append(nodes: Node | String*): Unit HTMLTemplateElement[JC] def appendChild(newChild: Node): Node HTMLTemplateElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTemplateElement[JC] def attributes: NamedNodeMap HTMLTemplateElement[JC] def baseURI: String HTMLTemplateElement[JC] def before(nodes: Node | String*): Unit HTMLTemplateElement[JC] def blur(): Unit @@ -13323,6 +13432,7 @@ HTMLTemplateElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTemplateElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTemplateElement[JC] def hasAttribute(name: String): Boolean HTMLTemplateElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTemplateElement[JC] def hasAttributes(): Boolean HTMLTemplateElement[JC] def hasChildNodes(): Boolean HTMLTemplateElement[JC] var id: String HTMLTemplateElement[JC] var innerHTML: String @@ -13483,6 +13593,7 @@ HTMLTextAreaElement[JC] def after(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def append(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def appendChild(newChild: Node): Node HTMLTextAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTextAreaElement[JC] def attributes: NamedNodeMap HTMLTextAreaElement[JC] var autofocus: Boolean HTMLTextAreaElement[JC] def baseURI: String HTMLTextAreaElement[JC] def before(nodes: Node | String*): Unit @@ -13528,6 +13639,7 @@ HTMLTextAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTextAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTextAreaElement[JC] def hasAttribute(name: String): Boolean HTMLTextAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTextAreaElement[JC] def hasAttributes(): Boolean HTMLTextAreaElement[JC] def hasChildNodes(): Boolean HTMLTextAreaElement[JC] var id: String HTMLTextAreaElement[JC] var innerHTML: String @@ -13707,6 +13819,7 @@ HTMLTitleElement[JC] def after(nodes: Node | String*): Unit HTMLTitleElement[JC] def append(nodes: Node | String*): Unit HTMLTitleElement[JC] def appendChild(newChild: Node): Node HTMLTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTitleElement[JC] def attributes: NamedNodeMap HTMLTitleElement[JC] def baseURI: String HTMLTitleElement[JC] def before(nodes: Node | String*): Unit HTMLTitleElement[JC] def blur(): Unit @@ -13746,6 +13859,7 @@ HTMLTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTitleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTitleElement[JC] def hasAttribute(name: String): Boolean HTMLTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTitleElement[JC] def hasAttributes(): Boolean HTMLTitleElement[JC] def hasChildNodes(): Boolean HTMLTitleElement[JC] var id: String HTMLTitleElement[JC] var innerHTML: String @@ -13907,6 +14021,7 @@ HTMLTrackElement[JC] def after(nodes: Node | String*): Unit HTMLTrackElement[JC] def append(nodes: Node | String*): Unit HTMLTrackElement[JC] def appendChild(newChild: Node): Node HTMLTrackElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTrackElement[JC] def attributes: NamedNodeMap HTMLTrackElement[JC] def baseURI: String HTMLTrackElement[JC] def before(nodes: Node | String*): Unit HTMLTrackElement[JC] def blur(): Unit @@ -13946,6 +14061,7 @@ HTMLTrackElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTrackElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTrackElement[JC] def hasAttribute(name: String): Boolean HTMLTrackElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTrackElement[JC] def hasAttributes(): Boolean HTMLTrackElement[JC] def hasChildNodes(): Boolean HTMLTrackElement[JC] var id: String HTMLTrackElement[JC] var innerHTML: String @@ -14111,6 +14227,7 @@ HTMLUListElement[JC] def after(nodes: Node | String*): Unit HTMLUListElement[JC] def append(nodes: Node | String*): Unit HTMLUListElement[JC] def appendChild(newChild: Node): Node HTMLUListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLUListElement[JC] def attributes: NamedNodeMap HTMLUListElement[JC] def baseURI: String HTMLUListElement[JC] def before(nodes: Node | String*): Unit HTMLUListElement[JC] def blur(): Unit @@ -14150,6 +14267,7 @@ HTMLUListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLUListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUListElement[JC] def hasAttribute(name: String): Boolean HTMLUListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLUListElement[JC] def hasAttributes(): Boolean HTMLUListElement[JC] def hasChildNodes(): Boolean HTMLUListElement[JC] var id: String HTMLUListElement[JC] var innerHTML: String @@ -14310,6 +14428,7 @@ HTMLUnknownElement[JC] def after(nodes: Node | String*): Unit HTMLUnknownElement[JC] def append(nodes: Node | String*): Unit HTMLUnknownElement[JC] def appendChild(newChild: Node): Node HTMLUnknownElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLUnknownElement[JC] def attributes: NamedNodeMap HTMLUnknownElement[JC] def baseURI: String HTMLUnknownElement[JC] def before(nodes: Node | String*): Unit HTMLUnknownElement[JC] def blur(): Unit @@ -14349,6 +14468,7 @@ HTMLUnknownElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLUnknownElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUnknownElement[JC] def hasAttribute(name: String): Boolean HTMLUnknownElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLUnknownElement[JC] def hasAttributes(): Boolean HTMLUnknownElement[JC] def hasChildNodes(): Boolean HTMLUnknownElement[JC] var id: String HTMLUnknownElement[JC] var innerHTML: String @@ -14509,6 +14629,7 @@ HTMLVideoElement[JC] def after(nodes: Node | String*): Unit HTMLVideoElement[JC] def append(nodes: Node | String*): Unit HTMLVideoElement[JC] def appendChild(newChild: Node): Node HTMLVideoElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLVideoElement[JC] def attributes: NamedNodeMap HTMLVideoElement[JC] def audioTracks: AudioTrackList HTMLVideoElement[JC] var autoplay: Boolean HTMLVideoElement[JC] def baseURI: String @@ -14559,6 +14680,7 @@ HTMLVideoElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLVideoElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLVideoElement[JC] def hasAttribute(name: String): Boolean HTMLVideoElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLVideoElement[JC] def hasAttributes(): Boolean HTMLVideoElement[JC] def hasChildNodes(): Boolean HTMLVideoElement[JC] var height: Int HTMLVideoElement[JC] var id: String @@ -15021,6 +15143,7 @@ Image[JC] var alt: String Image[JC] def append(nodes: Node | String*): Unit Image[JC] def appendChild(newChild: Node): Node Image[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +Image[JC] def attributes: NamedNodeMap Image[JC] def baseURI: String Image[JC] def before(nodes: Node | String*): Unit Image[JC] def blur(): Unit @@ -15062,6 +15185,7 @@ Image[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Image[JC] var gotpointercapture: js.Function1[PointerEvent, _] Image[JC] def hasAttribute(name: String): Boolean Image[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +Image[JC] def hasAttributes(): Boolean Image[JC] def hasChildNodes(): Boolean Image[JC] var height: Int Image[JC] var href: String @@ -17235,6 +17359,7 @@ SVGAElement[JC] def after(nodes: Node | String*): Unit SVGAElement[JC] def append(nodes: Node | String*): Unit SVGAElement[JC] def appendChild(newChild: Node): Node SVGAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGAElement[JC] def attributes: NamedNodeMap SVGAElement[JC] def baseURI: String SVGAElement[JC] def before(nodes: Node | String*): Unit SVGAElement[JC] def childElementCount: Int @@ -17270,6 +17395,7 @@ SVGAElement[JC] def getScreenCTM(): SVGMatrix SVGAElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGAElement[JC] def hasAttribute(name: String): Boolean SVGAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGAElement[JC] def hasAttributes(): Boolean SVGAElement[JC] def hasChildNodes(): Boolean SVGAElement[JC] def hasExtension(extension: String): Boolean SVGAElement[JC] var href: SVGAnimatedString @@ -17402,6 +17528,7 @@ SVGCircleElement[JC] def after(nodes: Node | String*): Unit SVGCircleElement[JC] def append(nodes: Node | String*): Unit SVGCircleElement[JC] def appendChild(newChild: Node): Node SVGCircleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGCircleElement[JC] def attributes: NamedNodeMap SVGCircleElement[JC] def baseURI: String SVGCircleElement[JC] def before(nodes: Node | String*): Unit SVGCircleElement[JC] def childElementCount: Int @@ -17439,6 +17566,7 @@ SVGCircleElement[JC] def getScreenCTM(): SVGMatrix SVGCircleElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGCircleElement[JC] def hasAttribute(name: String): Boolean SVGCircleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGCircleElement[JC] def hasAttributes(): Boolean SVGCircleElement[JC] def hasChildNodes(): Boolean SVGCircleElement[JC] def hasExtension(extension: String): Boolean SVGCircleElement[JC] var id: String @@ -17535,6 +17663,7 @@ SVGClipPathElement[JC] def after(nodes: Node | String*): Unit SVGClipPathElement[JC] def append(nodes: Node | String*): Unit SVGClipPathElement[JC] def appendChild(newChild: Node): Node SVGClipPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGClipPathElement[JC] def attributes: NamedNodeMap SVGClipPathElement[JC] def baseURI: String SVGClipPathElement[JC] def before(nodes: Node | String*): Unit SVGClipPathElement[JC] def childElementCount: Int @@ -17571,6 +17700,7 @@ SVGClipPathElement[JC] def getScreenCTM(): SVGMatrix SVGClipPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGClipPathElement[JC] def hasAttribute(name: String): Boolean SVGClipPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGClipPathElement[JC] def hasAttributes(): Boolean SVGClipPathElement[JC] def hasChildNodes(): Boolean SVGClipPathElement[JC] def hasExtension(extension: String): Boolean SVGClipPathElement[JC] var id: String @@ -17664,6 +17794,7 @@ SVGComponentTransferFunctionElement[JC] def amplitude: SVGAnimatedNumber SVGComponentTransferFunctionElement[JC] def append(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def appendChild(newChild: Node): Node SVGComponentTransferFunctionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGComponentTransferFunctionElement[JC] def attributes: NamedNodeMap SVGComponentTransferFunctionElement[JC] def baseURI: String SVGComponentTransferFunctionElement[JC] def before(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def childElementCount: Int @@ -17693,6 +17824,7 @@ SVGComponentTransferFunctionElement[JC] def getElementsByTagName(name: String): SVGComponentTransferFunctionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGComponentTransferFunctionElement[JC] def hasAttribute(name: String): Boolean SVGComponentTransferFunctionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGComponentTransferFunctionElement[JC] def hasAttributes(): Boolean SVGComponentTransferFunctionElement[JC] def hasChildNodes(): Boolean SVGComponentTransferFunctionElement[JC] var id: String SVGComponentTransferFunctionElement[JC] var innerHTML: String @@ -17787,6 +17919,7 @@ SVGDefsElement[JC] def after(nodes: Node | String*): Unit SVGDefsElement[JC] def append(nodes: Node | String*): Unit SVGDefsElement[JC] def appendChild(newChild: Node): Node SVGDefsElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGDefsElement[JC] def attributes: NamedNodeMap SVGDefsElement[JC] def baseURI: String SVGDefsElement[JC] def before(nodes: Node | String*): Unit SVGDefsElement[JC] def childElementCount: Int @@ -17822,6 +17955,7 @@ SVGDefsElement[JC] def getScreenCTM(): SVGMatrix SVGDefsElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGDefsElement[JC] def hasAttribute(name: String): Boolean SVGDefsElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGDefsElement[JC] def hasAttributes(): Boolean SVGDefsElement[JC] def hasChildNodes(): Boolean SVGDefsElement[JC] def hasExtension(extension: String): Boolean SVGDefsElement[JC] var id: String @@ -17914,6 +18048,7 @@ SVGDescElement[JC] def after(nodes: Node | String*): Unit SVGDescElement[JC] def append(nodes: Node | String*): Unit SVGDescElement[JC] def appendChild(newChild: Node): Node SVGDescElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGDescElement[JC] def attributes: NamedNodeMap SVGDescElement[JC] def baseURI: String SVGDescElement[JC] def before(nodes: Node | String*): Unit SVGDescElement[JC] def childElementCount: Int @@ -17943,6 +18078,7 @@ SVGDescElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGDescElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGDescElement[JC] def hasAttribute(name: String): Boolean SVGDescElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGDescElement[JC] def hasAttributes(): Boolean SVGDescElement[JC] def hasChildNodes(): Boolean SVGDescElement[JC] var id: String SVGDescElement[JC] var innerHTML: String @@ -18029,6 +18165,7 @@ SVGElement[JC] def after(nodes: Node | String*): Unit SVGElement[JC] def append(nodes: Node | String*): Unit SVGElement[JC] def appendChild(newChild: Node): Node SVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGElement[JC] def attributes: NamedNodeMap SVGElement[JC] def baseURI: String SVGElement[JC] def before(nodes: Node | String*): Unit SVGElement[JC] def childElementCount: Int @@ -18057,6 +18194,7 @@ SVGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Element] SVGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGElement[JC] def hasAttribute(name: String): Boolean SVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGElement[JC] def hasAttributes(): Boolean SVGElement[JC] def hasChildNodes(): Boolean SVGElement[JC] var id: String SVGElement[JC] var innerHTML: String @@ -18155,6 +18293,7 @@ SVGEllipseElement[JC] def after(nodes: Node | String*): Unit SVGEllipseElement[JC] def append(nodes: Node | String*): Unit SVGEllipseElement[JC] def appendChild(newChild: Node): Node SVGEllipseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGEllipseElement[JC] def attributes: NamedNodeMap SVGEllipseElement[JC] def baseURI: String SVGEllipseElement[JC] def before(nodes: Node | String*): Unit SVGEllipseElement[JC] def childElementCount: Int @@ -18192,6 +18331,7 @@ SVGEllipseElement[JC] def getScreenCTM(): SVGMatrix SVGEllipseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGEllipseElement[JC] def hasAttribute(name: String): Boolean SVGEllipseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGEllipseElement[JC] def hasAttributes(): Boolean SVGEllipseElement[JC] def hasChildNodes(): Boolean SVGEllipseElement[JC] def hasExtension(extension: String): Boolean SVGEllipseElement[JC] var id: String @@ -18293,6 +18433,7 @@ SVGFEBlendElement[JC] def after(nodes: Node | String*): Unit SVGFEBlendElement[JC] def append(nodes: Node | String*): Unit SVGFEBlendElement[JC] def appendChild(newChild: Node): Node SVGFEBlendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEBlendElement[JC] def attributes: NamedNodeMap SVGFEBlendElement[JC] def baseURI: String SVGFEBlendElement[JC] def before(nodes: Node | String*): Unit SVGFEBlendElement[JC] def childElementCount: Int @@ -18322,6 +18463,7 @@ SVGFEBlendElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEBlendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEBlendElement[JC] def hasAttribute(name: String): Boolean SVGFEBlendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEBlendElement[JC] def hasAttributes(): Boolean SVGFEBlendElement[JC] def hasChildNodes(): Boolean SVGFEBlendElement[JC] def height: SVGAnimatedLength SVGFEBlendElement[JC] var id: String @@ -18420,6 +18562,7 @@ SVGFEColorMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEColorMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEColorMatrixElement[JC] def attributes: NamedNodeMap SVGFEColorMatrixElement[JC] def baseURI: String SVGFEColorMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def childElementCount: Int @@ -18449,6 +18592,7 @@ SVGFEColorMatrixElement[JC] def getElementsByTagName(name: String): HTMLCollecti SVGFEColorMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEColorMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEColorMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEColorMatrixElement[JC] def hasAttributes(): Boolean SVGFEColorMatrixElement[JC] def hasChildNodes(): Boolean SVGFEColorMatrixElement[JC] def height: SVGAnimatedLength SVGFEColorMatrixElement[JC] var id: String @@ -18546,6 +18690,7 @@ SVGFEComponentTransferElement[JC] def after(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def append(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def appendChild(newChild: Node): Node SVGFEComponentTransferElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEComponentTransferElement[JC] def attributes: NamedNodeMap SVGFEComponentTransferElement[JC] def baseURI: String SVGFEComponentTransferElement[JC] def before(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def childElementCount: Int @@ -18575,6 +18720,7 @@ SVGFEComponentTransferElement[JC] def getElementsByTagName(name: String): HTMLCo SVGFEComponentTransferElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEComponentTransferElement[JC] def hasAttribute(name: String): Boolean SVGFEComponentTransferElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEComponentTransferElement[JC] def hasAttributes(): Boolean SVGFEComponentTransferElement[JC] def hasChildNodes(): Boolean SVGFEComponentTransferElement[JC] def height: SVGAnimatedLength SVGFEComponentTransferElement[JC] var id: String @@ -18665,6 +18811,7 @@ SVGFECompositeElement[JC] def after(nodes: Node | String*): Unit SVGFECompositeElement[JC] def append(nodes: Node | String*): Unit SVGFECompositeElement[JC] def appendChild(newChild: Node): Node SVGFECompositeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFECompositeElement[JC] def attributes: NamedNodeMap SVGFECompositeElement[JC] def baseURI: String SVGFECompositeElement[JC] def before(nodes: Node | String*): Unit SVGFECompositeElement[JC] def childElementCount: Int @@ -18694,6 +18841,7 @@ SVGFECompositeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFECompositeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFECompositeElement[JC] def hasAttribute(name: String): Boolean SVGFECompositeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFECompositeElement[JC] def hasAttributes(): Boolean SVGFECompositeElement[JC] def hasChildNodes(): Boolean SVGFECompositeElement[JC] def height: SVGAnimatedLength SVGFECompositeElement[JC] var id: String @@ -18797,6 +18945,7 @@ SVGFEConvolveMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEConvolveMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEConvolveMatrixElement[JC] def attributes: NamedNodeMap SVGFEConvolveMatrixElement[JC] def baseURI: String SVGFEConvolveMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def bias: SVGAnimatedNumber @@ -18829,6 +18978,7 @@ SVGFEConvolveMatrixElement[JC] def getElementsByTagName(name: String): HTMLColle SVGFEConvolveMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEConvolveMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEConvolveMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEConvolveMatrixElement[JC] def hasAttributes(): Boolean SVGFEConvolveMatrixElement[JC] def hasChildNodes(): Boolean SVGFEConvolveMatrixElement[JC] def height: SVGAnimatedLength SVGFEConvolveMatrixElement[JC] var id: String @@ -18931,6 +19081,7 @@ SVGFEDiffuseLightingElement[JC] def after(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def append(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def appendChild(newChild: Node): Node SVGFEDiffuseLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEDiffuseLightingElement[JC] def attributes: NamedNodeMap SVGFEDiffuseLightingElement[JC] def baseURI: String SVGFEDiffuseLightingElement[JC] def before(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def childElementCount: Int @@ -18961,6 +19112,7 @@ SVGFEDiffuseLightingElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDiffuseLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDiffuseLightingElement[JC] def hasAttribute(name: String): Boolean SVGFEDiffuseLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEDiffuseLightingElement[JC] def hasAttributes(): Boolean SVGFEDiffuseLightingElement[JC] def hasChildNodes(): Boolean SVGFEDiffuseLightingElement[JC] def height: SVGAnimatedLength SVGFEDiffuseLightingElement[JC] var id: String @@ -19054,6 +19206,7 @@ SVGFEDisplacementMapElement[JC] def after(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def append(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def appendChild(newChild: Node): Node SVGFEDisplacementMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEDisplacementMapElement[JC] def attributes: NamedNodeMap SVGFEDisplacementMapElement[JC] def baseURI: String SVGFEDisplacementMapElement[JC] def before(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def childElementCount: Int @@ -19083,6 +19236,7 @@ SVGFEDisplacementMapElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDisplacementMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDisplacementMapElement[JC] def hasAttribute(name: String): Boolean SVGFEDisplacementMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEDisplacementMapElement[JC] def hasAttributes(): Boolean SVGFEDisplacementMapElement[JC] def hasChildNodes(): Boolean SVGFEDisplacementMapElement[JC] def height: SVGAnimatedLength SVGFEDisplacementMapElement[JC] var id: String @@ -19182,6 +19336,7 @@ SVGFEDistantLightElement[JC] def after(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def append(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def appendChild(newChild: Node): Node SVGFEDistantLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEDistantLightElement[JC] def attributes: NamedNodeMap SVGFEDistantLightElement[JC] def azimuth: SVGAnimatedNumber SVGFEDistantLightElement[JC] def baseURI: String SVGFEDistantLightElement[JC] def before(nodes: Node | String*): Unit @@ -19212,6 +19367,7 @@ SVGFEDistantLightElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEDistantLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDistantLightElement[JC] def hasAttribute(name: String): Boolean SVGFEDistantLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEDistantLightElement[JC] def hasAttributes(): Boolean SVGFEDistantLightElement[JC] def hasChildNodes(): Boolean SVGFEDistantLightElement[JC] var id: String SVGFEDistantLightElement[JC] var innerHTML: String @@ -19295,6 +19451,7 @@ SVGFEFloodElement[JC] def after(nodes: Node | String*): Unit SVGFEFloodElement[JC] def append(nodes: Node | String*): Unit SVGFEFloodElement[JC] def appendChild(newChild: Node): Node SVGFEFloodElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFloodElement[JC] def attributes: NamedNodeMap SVGFEFloodElement[JC] def baseURI: String SVGFEFloodElement[JC] def before(nodes: Node | String*): Unit SVGFEFloodElement[JC] def childElementCount: Int @@ -19324,6 +19481,7 @@ SVGFEFloodElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFloodElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFloodElement[JC] def hasAttribute(name: String): Boolean SVGFEFloodElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFloodElement[JC] def hasAttributes(): Boolean SVGFEFloodElement[JC] def hasChildNodes(): Boolean SVGFEFloodElement[JC] def height: SVGAnimatedLength SVGFEFloodElement[JC] var id: String @@ -19414,6 +19572,7 @@ SVGFEFuncAElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncAElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def appendChild(newChild: Node): Node SVGFEFuncAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncAElement[JC] def attributes: NamedNodeMap SVGFEFuncAElement[JC] def baseURI: String SVGFEFuncAElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def childElementCount: Int @@ -19443,6 +19602,7 @@ SVGFEFuncAElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncAElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncAElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncAElement[JC] def hasAttributes(): Boolean SVGFEFuncAElement[JC] def hasChildNodes(): Boolean SVGFEFuncAElement[JC] var id: String SVGFEFuncAElement[JC] var innerHTML: String @@ -19532,6 +19692,7 @@ SVGFEFuncBElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncBElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def appendChild(newChild: Node): Node SVGFEFuncBElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncBElement[JC] def attributes: NamedNodeMap SVGFEFuncBElement[JC] def baseURI: String SVGFEFuncBElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def childElementCount: Int @@ -19561,6 +19722,7 @@ SVGFEFuncBElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncBElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncBElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncBElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncBElement[JC] def hasAttributes(): Boolean SVGFEFuncBElement[JC] def hasChildNodes(): Boolean SVGFEFuncBElement[JC] var id: String SVGFEFuncBElement[JC] var innerHTML: String @@ -19650,6 +19812,7 @@ SVGFEFuncGElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncGElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def appendChild(newChild: Node): Node SVGFEFuncGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncGElement[JC] def attributes: NamedNodeMap SVGFEFuncGElement[JC] def baseURI: String SVGFEFuncGElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def childElementCount: Int @@ -19679,6 +19842,7 @@ SVGFEFuncGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncGElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncGElement[JC] def hasAttributes(): Boolean SVGFEFuncGElement[JC] def hasChildNodes(): Boolean SVGFEFuncGElement[JC] var id: String SVGFEFuncGElement[JC] var innerHTML: String @@ -19768,6 +19932,7 @@ SVGFEFuncRElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncRElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def appendChild(newChild: Node): Node SVGFEFuncRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncRElement[JC] def attributes: NamedNodeMap SVGFEFuncRElement[JC] def baseURI: String SVGFEFuncRElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def childElementCount: Int @@ -19797,6 +19962,7 @@ SVGFEFuncRElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncRElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncRElement[JC] def hasAttributes(): Boolean SVGFEFuncRElement[JC] def hasChildNodes(): Boolean SVGFEFuncRElement[JC] var id: String SVGFEFuncRElement[JC] var innerHTML: String @@ -19885,6 +20051,7 @@ SVGFEGaussianBlurElement[JC] def after(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def append(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def appendChild(newChild: Node): Node SVGFEGaussianBlurElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEGaussianBlurElement[JC] def attributes: NamedNodeMap SVGFEGaussianBlurElement[JC] def baseURI: String SVGFEGaussianBlurElement[JC] def before(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def childElementCount: Int @@ -19914,6 +20081,7 @@ SVGFEGaussianBlurElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEGaussianBlurElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEGaussianBlurElement[JC] def hasAttribute(name: String): Boolean SVGFEGaussianBlurElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEGaussianBlurElement[JC] def hasAttributes(): Boolean SVGFEGaussianBlurElement[JC] def hasChildNodes(): Boolean SVGFEGaussianBlurElement[JC] def height: SVGAnimatedLength SVGFEGaussianBlurElement[JC] var id: String @@ -20007,6 +20175,7 @@ SVGFEImageElement[JC] def after(nodes: Node | String*): Unit SVGFEImageElement[JC] def append(nodes: Node | String*): Unit SVGFEImageElement[JC] def appendChild(newChild: Node): Node SVGFEImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEImageElement[JC] def attributes: NamedNodeMap SVGFEImageElement[JC] def baseURI: String SVGFEImageElement[JC] def before(nodes: Node | String*): Unit SVGFEImageElement[JC] def childElementCount: Int @@ -20037,6 +20206,7 @@ SVGFEImageElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEImageElement[JC] def hasAttribute(name: String): Boolean SVGFEImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEImageElement[JC] def hasAttributes(): Boolean SVGFEImageElement[JC] def hasChildNodes(): Boolean SVGFEImageElement[JC] def height: SVGAnimatedLength SVGFEImageElement[JC] var href: SVGAnimatedString @@ -20130,6 +20300,7 @@ SVGFEMergeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEMergeElement[JC] def attributes: NamedNodeMap SVGFEMergeElement[JC] def baseURI: String SVGFEMergeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeElement[JC] def childElementCount: Int @@ -20159,6 +20330,7 @@ SVGFEMergeElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEMergeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEMergeElement[JC] def hasAttributes(): Boolean SVGFEMergeElement[JC] def hasChildNodes(): Boolean SVGFEMergeElement[JC] def height: SVGAnimatedLength SVGFEMergeElement[JC] var id: String @@ -20248,6 +20420,7 @@ SVGFEMergeNodeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeNodeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEMergeNodeElement[JC] def attributes: NamedNodeMap SVGFEMergeNodeElement[JC] def baseURI: String SVGFEMergeNodeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def childElementCount: Int @@ -20276,6 +20449,7 @@ SVGFEMergeNodeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFEMergeNodeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeNodeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeNodeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEMergeNodeElement[JC] def hasAttributes(): Boolean SVGFEMergeNodeElement[JC] def hasChildNodes(): Boolean SVGFEMergeNodeElement[JC] var id: String SVGFEMergeNodeElement[JC] def in1: SVGAnimatedString @@ -20360,6 +20534,7 @@ SVGFEMorphologyElement[JC] def after(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def append(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def appendChild(newChild: Node): Node SVGFEMorphologyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEMorphologyElement[JC] def attributes: NamedNodeMap SVGFEMorphologyElement[JC] def baseURI: String SVGFEMorphologyElement[JC] def before(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def childElementCount: Int @@ -20389,6 +20564,7 @@ SVGFEMorphologyElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEMorphologyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMorphologyElement[JC] def hasAttribute(name: String): Boolean SVGFEMorphologyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEMorphologyElement[JC] def hasAttributes(): Boolean SVGFEMorphologyElement[JC] def hasChildNodes(): Boolean SVGFEMorphologyElement[JC] def height: SVGAnimatedLength SVGFEMorphologyElement[JC] var id: String @@ -20485,6 +20661,7 @@ SVGFEOffsetElement[JC] def after(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def append(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def appendChild(newChild: Node): Node SVGFEOffsetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEOffsetElement[JC] def attributes: NamedNodeMap SVGFEOffsetElement[JC] def baseURI: String SVGFEOffsetElement[JC] def before(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def childElementCount: Int @@ -20516,6 +20693,7 @@ SVGFEOffsetElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGFEOffsetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEOffsetElement[JC] def hasAttribute(name: String): Boolean SVGFEOffsetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEOffsetElement[JC] def hasAttributes(): Boolean SVGFEOffsetElement[JC] def hasChildNodes(): Boolean SVGFEOffsetElement[JC] def height: SVGAnimatedLength SVGFEOffsetElement[JC] var id: String @@ -20606,6 +20784,7 @@ SVGFEPointLightElement[JC] def after(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def append(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def appendChild(newChild: Node): Node SVGFEPointLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEPointLightElement[JC] def attributes: NamedNodeMap SVGFEPointLightElement[JC] def baseURI: String SVGFEPointLightElement[JC] def before(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def childElementCount: Int @@ -20634,6 +20813,7 @@ SVGFEPointLightElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEPointLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEPointLightElement[JC] def hasAttribute(name: String): Boolean SVGFEPointLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEPointLightElement[JC] def hasAttributes(): Boolean SVGFEPointLightElement[JC] def hasChildNodes(): Boolean SVGFEPointLightElement[JC] var id: String SVGFEPointLightElement[JC] var innerHTML: String @@ -20720,6 +20900,7 @@ SVGFESpecularLightingElement[JC] def after(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def append(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def appendChild(newChild: Node): Node SVGFESpecularLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFESpecularLightingElement[JC] def attributes: NamedNodeMap SVGFESpecularLightingElement[JC] def baseURI: String SVGFESpecularLightingElement[JC] def before(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def childElementCount: Int @@ -20749,6 +20930,7 @@ SVGFESpecularLightingElement[JC] def getElementsByTagName(name: String): HTMLCol SVGFESpecularLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpecularLightingElement[JC] def hasAttribute(name: String): Boolean SVGFESpecularLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFESpecularLightingElement[JC] def hasAttributes(): Boolean SVGFESpecularLightingElement[JC] def hasChildNodes(): Boolean SVGFESpecularLightingElement[JC] def height: SVGAnimatedLength SVGFESpecularLightingElement[JC] var id: String @@ -20844,6 +21026,7 @@ SVGFESpotLightElement[JC] def after(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def append(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def appendChild(newChild: Node): Node SVGFESpotLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFESpotLightElement[JC] def attributes: NamedNodeMap SVGFESpotLightElement[JC] def baseURI: String SVGFESpotLightElement[JC] def before(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def childElementCount: Int @@ -20872,6 +21055,7 @@ SVGFESpotLightElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFESpotLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpotLightElement[JC] def hasAttribute(name: String): Boolean SVGFESpotLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFESpotLightElement[JC] def hasAttributes(): Boolean SVGFESpotLightElement[JC] def hasChildNodes(): Boolean SVGFESpotLightElement[JC] var id: String SVGFESpotLightElement[JC] var innerHTML: String @@ -20963,6 +21147,7 @@ SVGFETileElement[JC] def after(nodes: Node | String*): Unit SVGFETileElement[JC] def append(nodes: Node | String*): Unit SVGFETileElement[JC] def appendChild(newChild: Node): Node SVGFETileElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFETileElement[JC] def attributes: NamedNodeMap SVGFETileElement[JC] def baseURI: String SVGFETileElement[JC] def before(nodes: Node | String*): Unit SVGFETileElement[JC] def childElementCount: Int @@ -20992,6 +21177,7 @@ SVGFETileElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFETileElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETileElement[JC] def hasAttribute(name: String): Boolean SVGFETileElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFETileElement[JC] def hasAttributes(): Boolean SVGFETileElement[JC] def hasChildNodes(): Boolean SVGFETileElement[JC] def height: SVGAnimatedLength SVGFETileElement[JC] var id: String @@ -21082,6 +21268,7 @@ SVGFETurbulenceElement[JC] def after(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def append(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def appendChild(newChild: Node): Node SVGFETurbulenceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFETurbulenceElement[JC] def attributes: NamedNodeMap SVGFETurbulenceElement[JC] def baseFrequencyX: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseFrequencyY: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseURI: String @@ -21113,6 +21300,7 @@ SVGFETurbulenceElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFETurbulenceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETurbulenceElement[JC] def hasAttribute(name: String): Boolean SVGFETurbulenceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFETurbulenceElement[JC] def hasAttributes(): Boolean SVGFETurbulenceElement[JC] def hasChildNodes(): Boolean SVGFETurbulenceElement[JC] def height: SVGAnimatedLength SVGFETurbulenceElement[JC] var id: String @@ -21215,6 +21403,7 @@ SVGFilterElement[JC] def after(nodes: Node | String*): Unit SVGFilterElement[JC] def append(nodes: Node | String*): Unit SVGFilterElement[JC] def appendChild(newChild: Node): Node SVGFilterElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFilterElement[JC] def attributes: NamedNodeMap SVGFilterElement[JC] def baseURI: String SVGFilterElement[JC] def before(nodes: Node | String*): Unit SVGFilterElement[JC] def childElementCount: Int @@ -21248,6 +21437,7 @@ SVGFilterElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFilterElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFilterElement[JC] def hasAttribute(name: String): Boolean SVGFilterElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFilterElement[JC] def hasAttributes(): Boolean SVGFilterElement[JC] def hasChildNodes(): Boolean SVGFilterElement[JC] def height: SVGAnimatedLength SVGFilterElement[JC] var href: SVGAnimatedString @@ -21350,6 +21540,7 @@ SVGGElement[JC] def after(nodes: Node | String*): Unit SVGGElement[JC] def append(nodes: Node | String*): Unit SVGGElement[JC] def appendChild(newChild: Node): Node SVGGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGGElement[JC] def attributes: NamedNodeMap SVGGElement[JC] def baseURI: String SVGGElement[JC] def before(nodes: Node | String*): Unit SVGGElement[JC] def childElementCount: Int @@ -21385,6 +21576,7 @@ SVGGElement[JC] def getScreenCTM(): SVGMatrix SVGGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGGElement[JC] def hasAttribute(name: String): Boolean SVGGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGGElement[JC] def hasAttributes(): Boolean SVGGElement[JC] def hasChildNodes(): Boolean SVGGElement[JC] def hasExtension(extension: String): Boolean SVGGElement[JC] var id: String @@ -21480,6 +21672,7 @@ SVGGradientElement[JC] def after(nodes: Node | String*): Unit SVGGradientElement[JC] def append(nodes: Node | String*): Unit SVGGradientElement[JC] def appendChild(newChild: Node): Node SVGGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGGradientElement[JC] def attributes: NamedNodeMap SVGGradientElement[JC] def baseURI: String SVGGradientElement[JC] def before(nodes: Node | String*): Unit SVGGradientElement[JC] def childElementCount: Int @@ -21512,6 +21705,7 @@ SVGGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGGradientElement[JC] def hasAttribute(name: String): Boolean SVGGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGGradientElement[JC] def hasAttributes(): Boolean SVGGradientElement[JC] def hasChildNodes(): Boolean SVGGradientElement[JC] var href: SVGAnimatedString SVGGradientElement[JC] var id: String @@ -21602,6 +21796,7 @@ SVGImageElement[JC] def after(nodes: Node | String*): Unit SVGImageElement[JC] def append(nodes: Node | String*): Unit SVGImageElement[JC] def appendChild(newChild: Node): Node SVGImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGImageElement[JC] def attributes: NamedNodeMap SVGImageElement[JC] def baseURI: String SVGImageElement[JC] def before(nodes: Node | String*): Unit SVGImageElement[JC] def childElementCount: Int @@ -21637,6 +21832,7 @@ SVGImageElement[JC] def getScreenCTM(): SVGMatrix SVGImageElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGImageElement[JC] def hasAttribute(name: String): Boolean SVGImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGImageElement[JC] def hasAttributes(): Boolean SVGImageElement[JC] def hasChildNodes(): Boolean SVGImageElement[JC] def hasExtension(extension: String): Boolean SVGImageElement[JC] def height: SVGAnimatedLength @@ -21762,6 +21958,7 @@ SVGLineElement[JC] def after(nodes: Node | String*): Unit SVGLineElement[JC] def append(nodes: Node | String*): Unit SVGLineElement[JC] def appendChild(newChild: Node): Node SVGLineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGLineElement[JC] def attributes: NamedNodeMap SVGLineElement[JC] def baseURI: String SVGLineElement[JC] def before(nodes: Node | String*): Unit SVGLineElement[JC] def childElementCount: Int @@ -21797,6 +21994,7 @@ SVGLineElement[JC] def getScreenCTM(): SVGMatrix SVGLineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGLineElement[JC] def hasAttribute(name: String): Boolean SVGLineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGLineElement[JC] def hasAttributes(): Boolean SVGLineElement[JC] def hasChildNodes(): Boolean SVGLineElement[JC] def hasExtension(extension: String): Boolean SVGLineElement[JC] var id: String @@ -21896,6 +22094,7 @@ SVGLinearGradientElement[JC] def after(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def append(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def appendChild(newChild: Node): Node SVGLinearGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGLinearGradientElement[JC] def attributes: NamedNodeMap SVGLinearGradientElement[JC] def baseURI: String SVGLinearGradientElement[JC] def before(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def childElementCount: Int @@ -21928,6 +22127,7 @@ SVGLinearGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGLinearGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGLinearGradientElement[JC] def hasAttribute(name: String): Boolean SVGLinearGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGLinearGradientElement[JC] def hasAttributes(): Boolean SVGLinearGradientElement[JC] def hasChildNodes(): Boolean SVGLinearGradientElement[JC] var href: SVGAnimatedString SVGLinearGradientElement[JC] var id: String @@ -22024,6 +22224,7 @@ SVGMarkerElement[JC] def after(nodes: Node | String*): Unit SVGMarkerElement[JC] def append(nodes: Node | String*): Unit SVGMarkerElement[JC] def appendChild(newChild: Node): Node SVGMarkerElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGMarkerElement[JC] def attributes: NamedNodeMap SVGMarkerElement[JC] def baseURI: String SVGMarkerElement[JC] def before(nodes: Node | String*): Unit SVGMarkerElement[JC] def childElementCount: Int @@ -22054,6 +22255,7 @@ SVGMarkerElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGMarkerElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMarkerElement[JC] def hasAttribute(name: String): Boolean SVGMarkerElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGMarkerElement[JC] def hasAttributes(): Boolean SVGMarkerElement[JC] def hasChildNodes(): Boolean SVGMarkerElement[JC] var id: String SVGMarkerElement[JC] var innerHTML: String @@ -22160,6 +22362,7 @@ SVGMaskElement[JC] def after(nodes: Node | String*): Unit SVGMaskElement[JC] def append(nodes: Node | String*): Unit SVGMaskElement[JC] def appendChild(newChild: Node): Node SVGMaskElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGMaskElement[JC] def attributes: NamedNodeMap SVGMaskElement[JC] def baseURI: String SVGMaskElement[JC] def before(nodes: Node | String*): Unit SVGMaskElement[JC] def childElementCount: Int @@ -22190,6 +22393,7 @@ SVGMaskElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGMaskElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMaskElement[JC] def hasAttribute(name: String): Boolean SVGMaskElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGMaskElement[JC] def hasAttributes(): Boolean SVGMaskElement[JC] def hasChildNodes(): Boolean SVGMaskElement[JC] def hasExtension(extension: String): Boolean SVGMaskElement[JC] def height: SVGAnimatedLength @@ -22303,6 +22507,7 @@ SVGMetadataElement[JC] def after(nodes: Node | String*): Unit SVGMetadataElement[JC] def append(nodes: Node | String*): Unit SVGMetadataElement[JC] def appendChild(newChild: Node): Node SVGMetadataElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGMetadataElement[JC] def attributes: NamedNodeMap SVGMetadataElement[JC] def baseURI: String SVGMetadataElement[JC] def before(nodes: Node | String*): Unit SVGMetadataElement[JC] def childElementCount: Int @@ -22331,6 +22536,7 @@ SVGMetadataElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGMetadataElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMetadataElement[JC] def hasAttribute(name: String): Boolean SVGMetadataElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGMetadataElement[JC] def hasAttributes(): Boolean SVGMetadataElement[JC] def hasChildNodes(): Boolean SVGMetadataElement[JC] var id: String SVGMetadataElement[JC] var innerHTML: String @@ -22423,6 +22629,7 @@ SVGPathElement[JC] def after(nodes: Node | String*): Unit SVGPathElement[JC] def append(nodes: Node | String*): Unit SVGPathElement[JC] def appendChild(newChild: Node): Node SVGPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPathElement[JC] def attributes: NamedNodeMap SVGPathElement[JC] def baseURI: String SVGPathElement[JC] def before(nodes: Node | String*): Unit SVGPathElement[JC] def childElementCount: Int @@ -22480,6 +22687,7 @@ SVGPathElement[JC] def getTotalLength(): Double SVGPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPathElement[JC] def hasAttribute(name: String): Boolean SVGPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPathElement[JC] def hasAttributes(): Boolean SVGPathElement[JC] def hasChildNodes(): Boolean SVGPathElement[JC] def hasExtension(extension: String): Boolean SVGPathElement[JC] var id: String @@ -22702,6 +22910,7 @@ SVGPatternElement[JC] def after(nodes: Node | String*): Unit SVGPatternElement[JC] def append(nodes: Node | String*): Unit SVGPatternElement[JC] def appendChild(newChild: Node): Node SVGPatternElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPatternElement[JC] def attributes: NamedNodeMap SVGPatternElement[JC] def baseURI: String SVGPatternElement[JC] def before(nodes: Node | String*): Unit SVGPatternElement[JC] def childElementCount: Int @@ -22732,6 +22941,7 @@ SVGPatternElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGPatternElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGPatternElement[JC] def hasAttribute(name: String): Boolean SVGPatternElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPatternElement[JC] def hasAttributes(): Boolean SVGPatternElement[JC] def hasChildNodes(): Boolean SVGPatternElement[JC] def hasExtension(extension: String): Boolean SVGPatternElement[JC] def height: SVGAnimatedLength @@ -22844,6 +23054,7 @@ SVGPolygonElement[JC] def animatedPoints: SVGPointList SVGPolygonElement[JC] def append(nodes: Node | String*): Unit SVGPolygonElement[JC] def appendChild(newChild: Node): Node SVGPolygonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPolygonElement[JC] def attributes: NamedNodeMap SVGPolygonElement[JC] def baseURI: String SVGPolygonElement[JC] def before(nodes: Node | String*): Unit SVGPolygonElement[JC] def childElementCount: Int @@ -22879,6 +23090,7 @@ SVGPolygonElement[JC] def getScreenCTM(): SVGMatrix SVGPolygonElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolygonElement[JC] def hasAttribute(name: String): Boolean SVGPolygonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPolygonElement[JC] def hasAttributes(): Boolean SVGPolygonElement[JC] def hasChildNodes(): Boolean SVGPolygonElement[JC] def hasExtension(extension: String): Boolean SVGPolygonElement[JC] var id: String @@ -22973,6 +23185,7 @@ SVGPolylineElement[JC] def animatedPoints: SVGPointList SVGPolylineElement[JC] def append(nodes: Node | String*): Unit SVGPolylineElement[JC] def appendChild(newChild: Node): Node SVGPolylineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPolylineElement[JC] def attributes: NamedNodeMap SVGPolylineElement[JC] def baseURI: String SVGPolylineElement[JC] def before(nodes: Node | String*): Unit SVGPolylineElement[JC] def childElementCount: Int @@ -23008,6 +23221,7 @@ SVGPolylineElement[JC] def getScreenCTM(): SVGMatrix SVGPolylineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolylineElement[JC] def hasAttribute(name: String): Boolean SVGPolylineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPolylineElement[JC] def hasAttributes(): Boolean SVGPolylineElement[JC] def hasChildNodes(): Boolean SVGPolylineElement[JC] def hasExtension(extension: String): Boolean SVGPolylineElement[JC] var id: String @@ -23120,6 +23334,7 @@ SVGRadialGradientElement[JC] def after(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def append(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def appendChild(newChild: Node): Node SVGRadialGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGRadialGradientElement[JC] def attributes: NamedNodeMap SVGRadialGradientElement[JC] def baseURI: String SVGRadialGradientElement[JC] def before(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def childElementCount: Int @@ -23156,6 +23371,7 @@ SVGRadialGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGRadialGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGRadialGradientElement[JC] def hasAttribute(name: String): Boolean SVGRadialGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGRadialGradientElement[JC] def hasAttributes(): Boolean SVGRadialGradientElement[JC] def hasChildNodes(): Boolean SVGRadialGradientElement[JC] var href: SVGAnimatedString SVGRadialGradientElement[JC] var id: String @@ -23247,6 +23463,7 @@ SVGRectElement[JC] def after(nodes: Node | String*): Unit SVGRectElement[JC] def append(nodes: Node | String*): Unit SVGRectElement[JC] def appendChild(newChild: Node): Node SVGRectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGRectElement[JC] def attributes: NamedNodeMap SVGRectElement[JC] def baseURI: String SVGRectElement[JC] def before(nodes: Node | String*): Unit SVGRectElement[JC] def childElementCount: Int @@ -23282,6 +23499,7 @@ SVGRectElement[JC] def getScreenCTM(): SVGMatrix SVGRectElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGRectElement[JC] def hasAttribute(name: String): Boolean SVGRectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGRectElement[JC] def hasAttributes(): Boolean SVGRectElement[JC] def hasChildNodes(): Boolean SVGRectElement[JC] def hasExtension(extension: String): Boolean SVGRectElement[JC] def height: SVGAnimatedLength @@ -23380,6 +23598,7 @@ SVGSVGElement[JC] def after(nodes: Node | String*): Unit SVGSVGElement[JC] def append(nodes: Node | String*): Unit SVGSVGElement[JC] def appendChild(newChild: Node): Node SVGSVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGSVGElement[JC] def attributes: NamedNodeMap SVGSVGElement[JC] def baseURI: String SVGSVGElement[JC] def before(nodes: Node | String*): Unit SVGSVGElement[JC] def checkEnclosure(element: SVGElement, rect: SVGRect): Boolean @@ -23437,6 +23656,7 @@ SVGSVGElement[JC] def getScreenCTM(): SVGMatrix SVGSVGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSVGElement[JC] def hasAttribute(name: String): Boolean SVGSVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGSVGElement[JC] def hasAttributes(): Boolean SVGSVGElement[JC] def hasChildNodes(): Boolean SVGSVGElement[JC] def hasExtension(extension: String): Boolean SVGSVGElement[JC] def height: SVGAnimatedLength @@ -23552,6 +23772,7 @@ SVGScriptElement[JC] def after(nodes: Node | String*): Unit SVGScriptElement[JC] def append(nodes: Node | String*): Unit SVGScriptElement[JC] def appendChild(newChild: Node): Node SVGScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGScriptElement[JC] def attributes: NamedNodeMap SVGScriptElement[JC] def baseURI: String SVGScriptElement[JC] def before(nodes: Node | String*): Unit SVGScriptElement[JC] def childElementCount: Int @@ -23581,6 +23802,7 @@ SVGScriptElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGScriptElement[JC] def hasAttribute(name: String): Boolean SVGScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGScriptElement[JC] def hasAttributes(): Boolean SVGScriptElement[JC] def hasChildNodes(): Boolean SVGScriptElement[JC] var href: SVGAnimatedString SVGScriptElement[JC] var id: String @@ -23666,6 +23888,7 @@ SVGStopElement[JC] def after(nodes: Node | String*): Unit SVGStopElement[JC] def append(nodes: Node | String*): Unit SVGStopElement[JC] def appendChild(newChild: Node): Node SVGStopElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGStopElement[JC] def attributes: NamedNodeMap SVGStopElement[JC] def baseURI: String SVGStopElement[JC] def before(nodes: Node | String*): Unit SVGStopElement[JC] def childElementCount: Int @@ -23695,6 +23918,7 @@ SVGStopElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGStopElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStopElement[JC] def hasAttribute(name: String): Boolean SVGStopElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGStopElement[JC] def hasAttributes(): Boolean SVGStopElement[JC] def hasChildNodes(): Boolean SVGStopElement[JC] var id: String SVGStopElement[JC] var innerHTML: String @@ -23790,6 +24014,7 @@ SVGStyleElement[JC] def after(nodes: Node | String*): Unit SVGStyleElement[JC] def append(nodes: Node | String*): Unit SVGStyleElement[JC] def appendChild(newChild: Node): Node SVGStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGStyleElement[JC] def attributes: NamedNodeMap SVGStyleElement[JC] def baseURI: String SVGStyleElement[JC] def before(nodes: Node | String*): Unit SVGStyleElement[JC] def childElementCount: Int @@ -23818,6 +24043,7 @@ SVGStyleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStyleElement[JC] def hasAttribute(name: String): Boolean SVGStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGStyleElement[JC] def hasAttributes(): Boolean SVGStyleElement[JC] def hasChildNodes(): Boolean SVGStyleElement[JC] var id: String SVGStyleElement[JC] var innerHTML: String @@ -23906,6 +24132,7 @@ SVGSwitchElement[JC] def after(nodes: Node | String*): Unit SVGSwitchElement[JC] def append(nodes: Node | String*): Unit SVGSwitchElement[JC] def appendChild(newChild: Node): Node SVGSwitchElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGSwitchElement[JC] def attributes: NamedNodeMap SVGSwitchElement[JC] def baseURI: String SVGSwitchElement[JC] def before(nodes: Node | String*): Unit SVGSwitchElement[JC] def childElementCount: Int @@ -23941,6 +24168,7 @@ SVGSwitchElement[JC] def getScreenCTM(): SVGMatrix SVGSwitchElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSwitchElement[JC] def hasAttribute(name: String): Boolean SVGSwitchElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGSwitchElement[JC] def hasAttributes(): Boolean SVGSwitchElement[JC] def hasChildNodes(): Boolean SVGSwitchElement[JC] def hasExtension(extension: String): Boolean SVGSwitchElement[JC] var id: String @@ -24033,6 +24261,7 @@ SVGSymbolElement[JC] def after(nodes: Node | String*): Unit SVGSymbolElement[JC] def append(nodes: Node | String*): Unit SVGSymbolElement[JC] def appendChild(newChild: Node): Node SVGSymbolElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGSymbolElement[JC] def attributes: NamedNodeMap SVGSymbolElement[JC] def baseURI: String SVGSymbolElement[JC] def before(nodes: Node | String*): Unit SVGSymbolElement[JC] def childElementCount: Int @@ -24063,6 +24292,7 @@ SVGSymbolElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGSymbolElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGSymbolElement[JC] def hasAttribute(name: String): Boolean SVGSymbolElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGSymbolElement[JC] def hasAttributes(): Boolean SVGSymbolElement[JC] def hasChildNodes(): Boolean SVGSymbolElement[JC] var id: String SVGSymbolElement[JC] var innerHTML: String @@ -24151,6 +24381,7 @@ SVGTSpanElement[JC] def after(nodes: Node | String*): Unit SVGTSpanElement[JC] def append(nodes: Node | String*): Unit SVGTSpanElement[JC] def appendChild(newChild: Node): Node SVGTSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTSpanElement[JC] def attributes: NamedNodeMap SVGTSpanElement[JC] def baseURI: String SVGTSpanElement[JC] def before(nodes: Node | String*): Unit SVGTSpanElement[JC] def childElementCount: Int @@ -24191,6 +24422,7 @@ SVGTSpanElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTSpanElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTSpanElement[JC] def hasAttribute(name: String): Boolean SVGTSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTSpanElement[JC] def hasAttributes(): Boolean SVGTSpanElement[JC] def hasChildNodes(): Boolean SVGTSpanElement[JC] def hasExtension(extension: String): Boolean SVGTSpanElement[JC] var id: String @@ -24291,6 +24523,7 @@ SVGTextContentElement[JC] def after(nodes: Node | String*): Unit SVGTextContentElement[JC] def append(nodes: Node | String*): Unit SVGTextContentElement[JC] def appendChild(newChild: Node): Node SVGTextContentElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextContentElement[JC] def attributes: NamedNodeMap SVGTextContentElement[JC] def baseURI: String SVGTextContentElement[JC] def before(nodes: Node | String*): Unit SVGTextContentElement[JC] def childElementCount: Int @@ -24329,6 +24562,7 @@ SVGTextContentElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextContentElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextContentElement[JC] def hasAttribute(name: String): Boolean SVGTextContentElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextContentElement[JC] def hasAttributes(): Boolean SVGTextContentElement[JC] def hasChildNodes(): Boolean SVGTextContentElement[JC] def hasExtension(extension: String): Boolean SVGTextContentElement[JC] var id: String @@ -24425,6 +24659,7 @@ SVGTextElement[JC] def after(nodes: Node | String*): Unit SVGTextElement[JC] def append(nodes: Node | String*): Unit SVGTextElement[JC] def appendChild(newChild: Node): Node SVGTextElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextElement[JC] def attributes: NamedNodeMap SVGTextElement[JC] def baseURI: String SVGTextElement[JC] def before(nodes: Node | String*): Unit SVGTextElement[JC] def childElementCount: Int @@ -24470,6 +24705,7 @@ SVGTextElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGTextElement[JC] def hasAttribute(name: String): Boolean SVGTextElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextElement[JC] def hasAttributes(): Boolean SVGTextElement[JC] def hasChildNodes(): Boolean SVGTextElement[JC] def hasExtension(extension: String): Boolean SVGTextElement[JC] var id: String @@ -24568,6 +24804,7 @@ SVGTextPathElement[JC] def after(nodes: Node | String*): Unit SVGTextPathElement[JC] def append(nodes: Node | String*): Unit SVGTextPathElement[JC] def appendChild(newChild: Node): Node SVGTextPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextPathElement[JC] def attributes: NamedNodeMap SVGTextPathElement[JC] def baseURI: String SVGTextPathElement[JC] def before(nodes: Node | String*): Unit SVGTextPathElement[JC] def childElementCount: Int @@ -24606,6 +24843,7 @@ SVGTextPathElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPathElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPathElement[JC] def hasAttribute(name: String): Boolean SVGTextPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextPathElement[JC] def hasAttributes(): Boolean SVGTextPathElement[JC] def hasChildNodes(): Boolean SVGTextPathElement[JC] def hasExtension(extension: String): Boolean SVGTextPathElement[JC] var href: SVGAnimatedString @@ -24709,6 +24947,7 @@ SVGTextPositioningElement[JC] def after(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def append(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def appendChild(newChild: Node): Node SVGTextPositioningElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextPositioningElement[JC] def attributes: NamedNodeMap SVGTextPositioningElement[JC] def baseURI: String SVGTextPositioningElement[JC] def before(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def childElementCount: Int @@ -24749,6 +24988,7 @@ SVGTextPositioningElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPositioningElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPositioningElement[JC] def hasAttribute(name: String): Boolean SVGTextPositioningElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextPositioningElement[JC] def hasAttributes(): Boolean SVGTextPositioningElement[JC] def hasChildNodes(): Boolean SVGTextPositioningElement[JC] def hasExtension(extension: String): Boolean SVGTextPositioningElement[JC] var id: String @@ -24845,6 +25085,7 @@ SVGTitleElement[JC] def after(nodes: Node | String*): Unit SVGTitleElement[JC] def append(nodes: Node | String*): Unit SVGTitleElement[JC] def appendChild(newChild: Node): Node SVGTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTitleElement[JC] def attributes: NamedNodeMap SVGTitleElement[JC] def baseURI: String SVGTitleElement[JC] def before(nodes: Node | String*): Unit SVGTitleElement[JC] def childElementCount: Int @@ -24874,6 +25115,7 @@ SVGTitleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGTitleElement[JC] def hasAttribute(name: String): Boolean SVGTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTitleElement[JC] def hasAttributes(): Boolean SVGTitleElement[JC] def hasChildNodes(): Boolean SVGTitleElement[JC] var id: String SVGTitleElement[JC] var innerHTML: String @@ -25001,6 +25243,7 @@ SVGUseElement[JC] def animatedInstanceRoot: SVGElementInstance SVGUseElement[JC] def append(nodes: Node | String*): Unit SVGUseElement[JC] def appendChild(newChild: Node): Node SVGUseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGUseElement[JC] def attributes: NamedNodeMap SVGUseElement[JC] def baseURI: String SVGUseElement[JC] def before(nodes: Node | String*): Unit SVGUseElement[JC] def childElementCount: Int @@ -25036,6 +25279,7 @@ SVGUseElement[JC] def getScreenCTM(): SVGMatrix SVGUseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGUseElement[JC] def hasAttribute(name: String): Boolean SVGUseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGUseElement[JC] def hasAttributes(): Boolean SVGUseElement[JC] def hasChildNodes(): Boolean SVGUseElement[JC] def hasExtension(extension: String): Boolean SVGUseElement[JC] def height: SVGAnimatedLength @@ -25134,6 +25378,7 @@ SVGViewElement[JC] def after(nodes: Node | String*): Unit SVGViewElement[JC] def append(nodes: Node | String*): Unit SVGViewElement[JC] def appendChild(newChild: Node): Node SVGViewElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGViewElement[JC] def attributes: NamedNodeMap SVGViewElement[JC] def baseURI: String SVGViewElement[JC] def before(nodes: Node | String*): Unit SVGViewElement[JC] def childElementCount: Int @@ -25163,6 +25408,7 @@ SVGViewElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGViewElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGViewElement[JC] def hasAttribute(name: String): Boolean SVGViewElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGViewElement[JC] def hasAttributes(): Boolean SVGViewElement[JC] def hasChildNodes(): Boolean SVGViewElement[JC] var id: String SVGViewElement[JC] var innerHTML: String diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index 5706c45d1..af6633c5e 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -191,6 +191,7 @@ Audio[JC] def after(nodes: Node | String*): Unit Audio[JC] def append(nodes: Node | String*): Unit Audio[JC] def appendChild(newChild: Node): Node Audio[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +Audio[JC] def attributes: NamedNodeMap Audio[JC] def audioTracks: AudioTrackList Audio[JC] var autoplay: Boolean Audio[JC] def baseURI: String @@ -241,6 +242,7 @@ Audio[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Audio[JC] var gotpointercapture: js.Function1[PointerEvent, _] Audio[JC] def hasAttribute(name: String): Boolean Audio[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +Audio[JC] def hasAttributes(): Boolean Audio[JC] def hasChildNodes(): Boolean Audio[JC] var id: String Audio[JC] def initialTime: Double @@ -1969,6 +1971,7 @@ Element[JC] def after(nodes: Node | String*): Unit Element[JC] def append(nodes: Node | String*): Unit Element[JC] def appendChild(newChild: Node): Node Element[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +Element[JC] def attributes: NamedNodeMap Element[JC] def baseURI: String Element[JC] def before(nodes: Node | String*): Unit Element[JC] def childElementCount: Int @@ -1997,6 +2000,7 @@ Element[JC] def getElementsByTagName(name: String): HTMLCollection[Element] Element[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] Element[JC] def hasAttribute(name: String): Boolean Element[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +Element[JC] def hasAttributes(): Boolean Element[JC] def hasChildNodes(): Boolean Element[JC] var id: String Element[JC] var innerHTML: String @@ -2349,6 +2353,7 @@ HTMLAnchorElement[JC] def after(nodes: Node | String*): Unit HTMLAnchorElement[JC] def append(nodes: Node | String*): Unit HTMLAnchorElement[JC] def appendChild(newChild: Node): Node HTMLAnchorElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLAnchorElement[JC] def attributes: NamedNodeMap HTMLAnchorElement[JC] def baseURI: String HTMLAnchorElement[JC] def before(nodes: Node | String*): Unit HTMLAnchorElement[JC] def blur(): Unit @@ -2389,6 +2394,7 @@ HTMLAnchorElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLAnchorElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAnchorElement[JC] def hasAttribute(name: String): Boolean HTMLAnchorElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLAnchorElement[JC] def hasAttributes(): Boolean HTMLAnchorElement[JC] def hasChildNodes(): Boolean HTMLAnchorElement[JC] var hash: String HTMLAnchorElement[JC] var host: String @@ -2564,6 +2570,7 @@ HTMLAreaElement[JC] var alt: String HTMLAreaElement[JC] def append(nodes: Node | String*): Unit HTMLAreaElement[JC] def appendChild(newChild: Node): Node HTMLAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLAreaElement[JC] def attributes: NamedNodeMap HTMLAreaElement[JC] def baseURI: String HTMLAreaElement[JC] def before(nodes: Node | String*): Unit HTMLAreaElement[JC] def blur(): Unit @@ -2604,6 +2611,7 @@ HTMLAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAreaElement[JC] def hasAttribute(name: String): Boolean HTMLAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLAreaElement[JC] def hasAttributes(): Boolean HTMLAreaElement[JC] def hasChildNodes(): Boolean HTMLAreaElement[JC] var hash: String HTMLAreaElement[JC] var host: String @@ -2774,6 +2782,7 @@ HTMLAudioElement[JC] def after(nodes: Node | String*): Unit HTMLAudioElement[JC] def append(nodes: Node | String*): Unit HTMLAudioElement[JC] def appendChild(newChild: Node): Node HTMLAudioElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLAudioElement[JC] def attributes: NamedNodeMap HTMLAudioElement[JC] def audioTracks: AudioTrackList HTMLAudioElement[JC] var autoplay: Boolean HTMLAudioElement[JC] def baseURI: String @@ -2824,6 +2833,7 @@ HTMLAudioElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLAudioElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLAudioElement[JC] def hasAttribute(name: String): Boolean HTMLAudioElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLAudioElement[JC] def hasAttributes(): Boolean HTMLAudioElement[JC] def hasChildNodes(): Boolean HTMLAudioElement[JC] var id: String HTMLAudioElement[JC] def initialTime: Double @@ -3001,6 +3011,7 @@ HTMLBRElement[JC] def after(nodes: Node | String*): Unit HTMLBRElement[JC] def append(nodes: Node | String*): Unit HTMLBRElement[JC] def appendChild(newChild: Node): Node HTMLBRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLBRElement[JC] def attributes: NamedNodeMap HTMLBRElement[JC] def baseURI: String HTMLBRElement[JC] def before(nodes: Node | String*): Unit HTMLBRElement[JC] def blur(): Unit @@ -3040,6 +3051,7 @@ HTMLBRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLBRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBRElement[JC] def hasAttribute(name: String): Boolean HTMLBRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLBRElement[JC] def hasAttributes(): Boolean HTMLBRElement[JC] def hasChildNodes(): Boolean HTMLBRElement[JC] var id: String HTMLBRElement[JC] var innerHTML: String @@ -3200,6 +3212,7 @@ HTMLBaseElement[JC] def after(nodes: Node | String*): Unit HTMLBaseElement[JC] def append(nodes: Node | String*): Unit HTMLBaseElement[JC] def appendChild(newChild: Node): Node HTMLBaseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLBaseElement[JC] def attributes: NamedNodeMap HTMLBaseElement[JC] def baseURI: String HTMLBaseElement[JC] def before(nodes: Node | String*): Unit HTMLBaseElement[JC] def blur(): Unit @@ -3239,6 +3252,7 @@ HTMLBaseElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBaseElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBaseElement[JC] def hasAttribute(name: String): Boolean HTMLBaseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLBaseElement[JC] def hasAttributes(): Boolean HTMLBaseElement[JC] def hasChildNodes(): Boolean HTMLBaseElement[JC] var href: String HTMLBaseElement[JC] var id: String @@ -3401,6 +3415,7 @@ HTMLBodyElement[JC] def after(nodes: Node | String*): Unit HTMLBodyElement[JC] def append(nodes: Node | String*): Unit HTMLBodyElement[JC] def appendChild(newChild: Node): Node HTMLBodyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLBodyElement[JC] def attributes: NamedNodeMap HTMLBodyElement[JC] def baseURI: String HTMLBodyElement[JC] def before(nodes: Node | String*): Unit HTMLBodyElement[JC] def blur(): Unit @@ -3440,6 +3455,7 @@ HTMLBodyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLBodyElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLBodyElement[JC] def hasAttribute(name: String): Boolean HTMLBodyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLBodyElement[JC] def hasAttributes(): Boolean HTMLBodyElement[JC] def hasChildNodes(): Boolean HTMLBodyElement[JC] var id: String HTMLBodyElement[JC] var innerHTML: String @@ -3614,6 +3630,7 @@ HTMLButtonElement[JC] def after(nodes: Node | String*): Unit HTMLButtonElement[JC] def append(nodes: Node | String*): Unit HTMLButtonElement[JC] def appendChild(newChild: Node): Node HTMLButtonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLButtonElement[JC] def attributes: NamedNodeMap HTMLButtonElement[JC] var autofocus: Boolean HTMLButtonElement[JC] def baseURI: String HTMLButtonElement[JC] def before(nodes: Node | String*): Unit @@ -3662,6 +3679,7 @@ HTMLButtonElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLButtonElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLButtonElement[JC] def hasAttribute(name: String): Boolean HTMLButtonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLButtonElement[JC] def hasAttributes(): Boolean HTMLButtonElement[JC] def hasChildNodes(): Boolean HTMLButtonElement[JC] var id: String HTMLButtonElement[JC] var innerHTML: String @@ -3831,6 +3849,7 @@ HTMLCanvasElement[JC] def after(nodes: Node | String*): Unit HTMLCanvasElement[JC] def append(nodes: Node | String*): Unit HTMLCanvasElement[JC] def appendChild(newChild: Node): Node HTMLCanvasElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLCanvasElement[JC] def attributes: NamedNodeMap HTMLCanvasElement[JC] def baseURI: String HTMLCanvasElement[JC] def before(nodes: Node | String*): Unit HTMLCanvasElement[JC] def blur(): Unit @@ -3871,6 +3890,7 @@ HTMLCanvasElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLCanvasElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLCanvasElement[JC] def hasAttribute(name: String): Boolean HTMLCanvasElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLCanvasElement[JC] def hasAttributes(): Boolean HTMLCanvasElement[JC] def hasChildNodes(): Boolean HTMLCanvasElement[JC] var height: Int HTMLCanvasElement[JC] var id: String @@ -4038,6 +4058,7 @@ HTMLDListElement[JC] def after(nodes: Node | String*): Unit HTMLDListElement[JC] def append(nodes: Node | String*): Unit HTMLDListElement[JC] def appendChild(newChild: Node): Node HTMLDListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDListElement[JC] def attributes: NamedNodeMap HTMLDListElement[JC] def baseURI: String HTMLDListElement[JC] def before(nodes: Node | String*): Unit HTMLDListElement[JC] def blur(): Unit @@ -4077,6 +4098,7 @@ HTMLDListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLDListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDListElement[JC] def hasAttribute(name: String): Boolean HTMLDListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDListElement[JC] def hasAttributes(): Boolean HTMLDListElement[JC] def hasChildNodes(): Boolean HTMLDListElement[JC] var id: String HTMLDListElement[JC] var innerHTML: String @@ -4237,6 +4259,7 @@ HTMLDataListElement[JC] def after(nodes: Node | String*): Unit HTMLDataListElement[JC] def append(nodes: Node | String*): Unit HTMLDataListElement[JC] def appendChild(newChild: Node): Node HTMLDataListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDataListElement[JC] def attributes: NamedNodeMap HTMLDataListElement[JC] def baseURI: String HTMLDataListElement[JC] def before(nodes: Node | String*): Unit HTMLDataListElement[JC] def blur(): Unit @@ -4276,6 +4299,7 @@ HTMLDataListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLDataListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDataListElement[JC] def hasAttribute(name: String): Boolean HTMLDataListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDataListElement[JC] def hasAttributes(): Boolean HTMLDataListElement[JC] def hasChildNodes(): Boolean HTMLDataListElement[JC] var id: String HTMLDataListElement[JC] var innerHTML: String @@ -4437,6 +4461,7 @@ HTMLDialogElement[JC] def after(nodes: Node | String*): Unit HTMLDialogElement[JC] def append(nodes: Node | String*): Unit HTMLDialogElement[JC] def appendChild(newChild: Node): Node HTMLDialogElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDialogElement[JC] def attributes: NamedNodeMap HTMLDialogElement[JC] def baseURI: String HTMLDialogElement[JC] def before(nodes: Node | String*): Unit HTMLDialogElement[JC] def blur(): Unit @@ -4477,6 +4502,7 @@ HTMLDialogElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLDialogElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDialogElement[JC] def hasAttribute(name: String): Boolean HTMLDialogElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDialogElement[JC] def hasAttributes(): Boolean HTMLDialogElement[JC] def hasChildNodes(): Boolean HTMLDialogElement[JC] var id: String HTMLDialogElement[JC] var innerHTML: String @@ -4641,6 +4667,7 @@ HTMLDivElement[JC] def after(nodes: Node | String*): Unit HTMLDivElement[JC] def append(nodes: Node | String*): Unit HTMLDivElement[JC] def appendChild(newChild: Node): Node HTMLDivElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLDivElement[JC] def attributes: NamedNodeMap HTMLDivElement[JC] def baseURI: String HTMLDivElement[JC] def before(nodes: Node | String*): Unit HTMLDivElement[JC] def blur(): Unit @@ -4680,6 +4707,7 @@ HTMLDivElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLDivElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLDivElement[JC] def hasAttribute(name: String): Boolean HTMLDivElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLDivElement[JC] def hasAttributes(): Boolean HTMLDivElement[JC] def hasChildNodes(): Boolean HTMLDivElement[JC] var id: String HTMLDivElement[JC] var innerHTML: String @@ -5038,6 +5066,7 @@ HTMLElement[JC] def after(nodes: Node | String*): Unit HTMLElement[JC] def append(nodes: Node | String*): Unit HTMLElement[JC] def appendChild(newChild: Node): Node HTMLElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLElement[JC] def attributes: NamedNodeMap HTMLElement[JC] def baseURI: String HTMLElement[JC] def before(nodes: Node | String*): Unit HTMLElement[JC] def blur(): Unit @@ -5077,6 +5106,7 @@ HTMLElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: Stri HTMLElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLElement[JC] def hasAttribute(name: String): Boolean HTMLElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLElement[JC] def hasAttributes(): Boolean HTMLElement[JC] def hasChildNodes(): Boolean HTMLElement[JC] var id: String HTMLElement[JC] var innerHTML: String @@ -5237,6 +5267,7 @@ HTMLEmbedElement[JC] def after(nodes: Node | String*): Unit HTMLEmbedElement[JC] def append(nodes: Node | String*): Unit HTMLEmbedElement[JC] def appendChild(newChild: Node): Node HTMLEmbedElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLEmbedElement[JC] def attributes: NamedNodeMap HTMLEmbedElement[JC] def baseURI: String HTMLEmbedElement[JC] def before(nodes: Node | String*): Unit HTMLEmbedElement[JC] def blur(): Unit @@ -5277,6 +5308,7 @@ HTMLEmbedElement[JC] def getSVGDocument(): Document HTMLEmbedElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLEmbedElement[JC] def hasAttribute(name: String): Boolean HTMLEmbedElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLEmbedElement[JC] def hasAttributes(): Boolean HTMLEmbedElement[JC] def hasChildNodes(): Boolean HTMLEmbedElement[JC] var height: String HTMLEmbedElement[JC] var id: String @@ -5440,6 +5472,7 @@ HTMLFieldSetElement[JC] def after(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def append(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def appendChild(newChild: Node): Node HTMLFieldSetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLFieldSetElement[JC] def attributes: NamedNodeMap HTMLFieldSetElement[JC] def baseURI: String HTMLFieldSetElement[JC] def before(nodes: Node | String*): Unit HTMLFieldSetElement[JC] def blur(): Unit @@ -5482,6 +5515,7 @@ HTMLFieldSetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLFieldSetElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFieldSetElement[JC] def hasAttribute(name: String): Boolean HTMLFieldSetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLFieldSetElement[JC] def hasAttributes(): Boolean HTMLFieldSetElement[JC] def hasChildNodes(): Boolean HTMLFieldSetElement[JC] var id: String HTMLFieldSetElement[JC] var innerHTML: String @@ -5654,6 +5688,7 @@ HTMLFormElement[JC] def append(nodes: Node | String*): Unit HTMLFormElement[JC] def appendChild(newChild: Node): Node HTMLFormElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLFormElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLFormElement[JC] def attributes: NamedNodeMap HTMLFormElement[JC] var autocomplete: String HTMLFormElement[JC] def baseURI: String HTMLFormElement[JC] def before(nodes: Node | String*): Unit @@ -5698,6 +5733,7 @@ HTMLFormElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLFormElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLFormElement[JC] def hasAttribute(name: String): Boolean HTMLFormElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLFormElement[JC] def hasAttributes(): Boolean HTMLFormElement[JC] def hasChildNodes(): Boolean HTMLFormElement[JC] var id: String HTMLFormElement[JC] var innerHTML: String @@ -5869,6 +5905,7 @@ HTMLHRElement[JC] def after(nodes: Node | String*): Unit HTMLHRElement[JC] def append(nodes: Node | String*): Unit HTMLHRElement[JC] def appendChild(newChild: Node): Node HTMLHRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHRElement[JC] def attributes: NamedNodeMap HTMLHRElement[JC] def baseURI: String HTMLHRElement[JC] def before(nodes: Node | String*): Unit HTMLHRElement[JC] def blur(): Unit @@ -5908,6 +5945,7 @@ HTMLHRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLHRElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHRElement[JC] def hasAttribute(name: String): Boolean HTMLHRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHRElement[JC] def hasAttributes(): Boolean HTMLHRElement[JC] def hasChildNodes(): Boolean HTMLHRElement[JC] var id: String HTMLHRElement[JC] var innerHTML: String @@ -6068,6 +6106,7 @@ HTMLHeadElement[JC] def after(nodes: Node | String*): Unit HTMLHeadElement[JC] def append(nodes: Node | String*): Unit HTMLHeadElement[JC] def appendChild(newChild: Node): Node HTMLHeadElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHeadElement[JC] def attributes: NamedNodeMap HTMLHeadElement[JC] def baseURI: String HTMLHeadElement[JC] def before(nodes: Node | String*): Unit HTMLHeadElement[JC] def blur(): Unit @@ -6107,6 +6146,7 @@ HTMLHeadElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHeadElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadElement[JC] def hasAttribute(name: String): Boolean HTMLHeadElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHeadElement[JC] def hasAttributes(): Boolean HTMLHeadElement[JC] def hasChildNodes(): Boolean HTMLHeadElement[JC] var id: String HTMLHeadElement[JC] var innerHTML: String @@ -6267,6 +6307,7 @@ HTMLHeadingElement[JC] def after(nodes: Node | String*): Unit HTMLHeadingElement[JC] def append(nodes: Node | String*): Unit HTMLHeadingElement[JC] def appendChild(newChild: Node): Node HTMLHeadingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHeadingElement[JC] def attributes: NamedNodeMap HTMLHeadingElement[JC] def baseURI: String HTMLHeadingElement[JC] def before(nodes: Node | String*): Unit HTMLHeadingElement[JC] def blur(): Unit @@ -6306,6 +6347,7 @@ HTMLHeadingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLHeadingElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHeadingElement[JC] def hasAttribute(name: String): Boolean HTMLHeadingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHeadingElement[JC] def hasAttributes(): Boolean HTMLHeadingElement[JC] def hasChildNodes(): Boolean HTMLHeadingElement[JC] var id: String HTMLHeadingElement[JC] var innerHTML: String @@ -6466,6 +6508,7 @@ HTMLHtmlElement[JC] def after(nodes: Node | String*): Unit HTMLHtmlElement[JC] def append(nodes: Node | String*): Unit HTMLHtmlElement[JC] def appendChild(newChild: Node): Node HTMLHtmlElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLHtmlElement[JC] def attributes: NamedNodeMap HTMLHtmlElement[JC] def baseURI: String HTMLHtmlElement[JC] def before(nodes: Node | String*): Unit HTMLHtmlElement[JC] def blur(): Unit @@ -6505,6 +6548,7 @@ HTMLHtmlElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLHtmlElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLHtmlElement[JC] def hasAttribute(name: String): Boolean HTMLHtmlElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLHtmlElement[JC] def hasAttributes(): Boolean HTMLHtmlElement[JC] def hasChildNodes(): Boolean HTMLHtmlElement[JC] var id: String HTMLHtmlElement[JC] var innerHTML: String @@ -6665,6 +6709,7 @@ HTMLIFrameElement[JC] def after(nodes: Node | String*): Unit HTMLIFrameElement[JC] def append(nodes: Node | String*): Unit HTMLIFrameElement[JC] def appendChild(newChild: Node): Node HTMLIFrameElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLIFrameElement[JC] def attributes: NamedNodeMap HTMLIFrameElement[JC] def baseURI: String HTMLIFrameElement[JC] def before(nodes: Node | String*): Unit HTMLIFrameElement[JC] def blur(): Unit @@ -6708,6 +6753,7 @@ HTMLIFrameElement[JC] def getSVGDocument(): Document HTMLIFrameElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLIFrameElement[JC] def hasAttribute(name: String): Boolean HTMLIFrameElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLIFrameElement[JC] def hasAttributes(): Boolean HTMLIFrameElement[JC] def hasChildNodes(): Boolean HTMLIFrameElement[JC] var height: String HTMLIFrameElement[JC] var id: String @@ -6876,6 +6922,7 @@ HTMLImageElement[JC] var alt: String HTMLImageElement[JC] def append(nodes: Node | String*): Unit HTMLImageElement[JC] def appendChild(newChild: Node): Node HTMLImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLImageElement[JC] def attributes: NamedNodeMap HTMLImageElement[JC] def baseURI: String HTMLImageElement[JC] def before(nodes: Node | String*): Unit HTMLImageElement[JC] def blur(): Unit @@ -6917,6 +6964,7 @@ HTMLImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLImageElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLImageElement[JC] def hasAttribute(name: String): Boolean HTMLImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLImageElement[JC] def hasAttributes(): Boolean HTMLImageElement[JC] def hasChildNodes(): Boolean HTMLImageElement[JC] var height: Int HTMLImageElement[JC] var href: String @@ -7093,6 +7141,7 @@ HTMLInputElement[JC] var alt: String HTMLInputElement[JC] def append(nodes: Node | String*): Unit HTMLInputElement[JC] def appendChild(newChild: Node): Node HTMLInputElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLInputElement[JC] def attributes: NamedNodeMap HTMLInputElement[JC] var autocomplete: String HTMLInputElement[JC] var autofocus: Boolean HTMLInputElement[JC] def baseURI: String @@ -7146,6 +7195,7 @@ HTMLInputElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLInputElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLInputElement[JC] def hasAttribute(name: String): Boolean HTMLInputElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLInputElement[JC] def hasAttributes(): Boolean HTMLInputElement[JC] def hasChildNodes(): Boolean HTMLInputElement[JC] var height: String HTMLInputElement[JC] var id: String @@ -7337,6 +7387,7 @@ HTMLLIElement[JC] def after(nodes: Node | String*): Unit HTMLLIElement[JC] def append(nodes: Node | String*): Unit HTMLLIElement[JC] def appendChild(newChild: Node): Node HTMLLIElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLIElement[JC] def attributes: NamedNodeMap HTMLLIElement[JC] def baseURI: String HTMLLIElement[JC] def before(nodes: Node | String*): Unit HTMLLIElement[JC] def blur(): Unit @@ -7376,6 +7427,7 @@ HTMLLIElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: St HTMLLIElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLIElement[JC] def hasAttribute(name: String): Boolean HTMLLIElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLIElement[JC] def hasAttributes(): Boolean HTMLLIElement[JC] def hasChildNodes(): Boolean HTMLLIElement[JC] var id: String HTMLLIElement[JC] var innerHTML: String @@ -7537,6 +7589,7 @@ HTMLLabelElement[JC] def after(nodes: Node | String*): Unit HTMLLabelElement[JC] def append(nodes: Node | String*): Unit HTMLLabelElement[JC] def appendChild(newChild: Node): Node HTMLLabelElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLabelElement[JC] def attributes: NamedNodeMap HTMLLabelElement[JC] def baseURI: String HTMLLabelElement[JC] def before(nodes: Node | String*): Unit HTMLLabelElement[JC] def blur(): Unit @@ -7577,6 +7630,7 @@ HTMLLabelElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLabelElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLabelElement[JC] def hasAttribute(name: String): Boolean HTMLLabelElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLabelElement[JC] def hasAttributes(): Boolean HTMLLabelElement[JC] def hasChildNodes(): Boolean HTMLLabelElement[JC] var htmlFor: String HTMLLabelElement[JC] var id: String @@ -7739,6 +7793,7 @@ HTMLLegendElement[JC] var align: String HTMLLegendElement[JC] def append(nodes: Node | String*): Unit HTMLLegendElement[JC] def appendChild(newChild: Node): Node HTMLLegendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLegendElement[JC] def attributes: NamedNodeMap HTMLLegendElement[JC] def baseURI: String HTMLLegendElement[JC] def before(nodes: Node | String*): Unit HTMLLegendElement[JC] def blur(): Unit @@ -7779,6 +7834,7 @@ HTMLLegendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLLegendElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLegendElement[JC] def hasAttribute(name: String): Boolean HTMLLegendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLegendElement[JC] def hasAttributes(): Boolean HTMLLegendElement[JC] def hasChildNodes(): Boolean HTMLLegendElement[JC] var id: String HTMLLegendElement[JC] var innerHTML: String @@ -7939,6 +7995,7 @@ HTMLLinkElement[JC] def after(nodes: Node | String*): Unit HTMLLinkElement[JC] def append(nodes: Node | String*): Unit HTMLLinkElement[JC] def appendChild(newChild: Node): Node HTMLLinkElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLLinkElement[JC] def attributes: NamedNodeMap HTMLLinkElement[JC] def baseURI: String HTMLLinkElement[JC] def before(nodes: Node | String*): Unit HTMLLinkElement[JC] def blur(): Unit @@ -7978,6 +8035,7 @@ HTMLLinkElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLLinkElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLLinkElement[JC] def hasAttribute(name: String): Boolean HTMLLinkElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLLinkElement[JC] def hasAttributes(): Boolean HTMLLinkElement[JC] def hasChildNodes(): Boolean HTMLLinkElement[JC] var href: String HTMLLinkElement[JC] var hreflang: String @@ -8146,6 +8204,7 @@ HTMLMapElement[JC] def after(nodes: Node | String*): Unit HTMLMapElement[JC] def append(nodes: Node | String*): Unit HTMLMapElement[JC] def appendChild(newChild: Node): Node HTMLMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMapElement[JC] def attributes: NamedNodeMap HTMLMapElement[JC] def baseURI: String HTMLMapElement[JC] def before(nodes: Node | String*): Unit HTMLMapElement[JC] def blur(): Unit @@ -8185,6 +8244,7 @@ HTMLMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLMapElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMapElement[JC] def hasAttribute(name: String): Boolean HTMLMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMapElement[JC] def hasAttributes(): Boolean HTMLMapElement[JC] def hasChildNodes(): Boolean HTMLMapElement[JC] var id: String HTMLMapElement[JC] var innerHTML: String @@ -8346,6 +8406,7 @@ HTMLMediaElement[JC] def after(nodes: Node | String*): Unit HTMLMediaElement[JC] def append(nodes: Node | String*): Unit HTMLMediaElement[JC] def appendChild(newChild: Node): Node HTMLMediaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMediaElement[JC] def attributes: NamedNodeMap HTMLMediaElement[JC] def audioTracks: AudioTrackList HTMLMediaElement[JC] var autoplay: Boolean HTMLMediaElement[JC] def baseURI: String @@ -8396,6 +8457,7 @@ HTMLMediaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMediaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMediaElement[JC] def hasAttribute(name: String): Boolean HTMLMediaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMediaElement[JC] def hasAttributes(): Boolean HTMLMediaElement[JC] def hasChildNodes(): Boolean HTMLMediaElement[JC] var id: String HTMLMediaElement[JC] def initialTime: Double @@ -8582,6 +8644,7 @@ HTMLMenuElement[JC] def after(nodes: Node | String*): Unit HTMLMenuElement[JC] def append(nodes: Node | String*): Unit HTMLMenuElement[JC] def appendChild(newChild: Node): Node HTMLMenuElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMenuElement[JC] def attributes: NamedNodeMap HTMLMenuElement[JC] def baseURI: String HTMLMenuElement[JC] def before(nodes: Node | String*): Unit HTMLMenuElement[JC] def blur(): Unit @@ -8621,6 +8684,7 @@ HTMLMenuElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMenuElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMenuElement[JC] def hasAttribute(name: String): Boolean HTMLMenuElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMenuElement[JC] def hasAttributes(): Boolean HTMLMenuElement[JC] def hasChildNodes(): Boolean HTMLMenuElement[JC] var id: String HTMLMenuElement[JC] var innerHTML: String @@ -8782,6 +8846,7 @@ HTMLMetaElement[JC] def after(nodes: Node | String*): Unit HTMLMetaElement[JC] def append(nodes: Node | String*): Unit HTMLMetaElement[JC] def appendChild(newChild: Node): Node HTMLMetaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLMetaElement[JC] def attributes: NamedNodeMap HTMLMetaElement[JC] def baseURI: String HTMLMetaElement[JC] def before(nodes: Node | String*): Unit HTMLMetaElement[JC] def blur(): Unit @@ -8823,6 +8888,7 @@ HTMLMetaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLMetaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLMetaElement[JC] def hasAttribute(name: String): Boolean HTMLMetaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLMetaElement[JC] def hasAttributes(): Boolean HTMLMetaElement[JC] def hasChildNodes(): Boolean HTMLMetaElement[JC] var httpEquiv: String HTMLMetaElement[JC] var id: String @@ -8986,6 +9052,7 @@ HTMLModElement[JC] def after(nodes: Node | String*): Unit HTMLModElement[JC] def append(nodes: Node | String*): Unit HTMLModElement[JC] def appendChild(newChild: Node): Node HTMLModElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLModElement[JC] def attributes: NamedNodeMap HTMLModElement[JC] def baseURI: String HTMLModElement[JC] def before(nodes: Node | String*): Unit HTMLModElement[JC] def blur(): Unit @@ -9027,6 +9094,7 @@ HTMLModElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLModElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLModElement[JC] def hasAttribute(name: String): Boolean HTMLModElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLModElement[JC] def hasAttributes(): Boolean HTMLModElement[JC] def hasChildNodes(): Boolean HTMLModElement[JC] var id: String HTMLModElement[JC] var innerHTML: String @@ -9187,6 +9255,7 @@ HTMLOListElement[JC] def after(nodes: Node | String*): Unit HTMLOListElement[JC] def append(nodes: Node | String*): Unit HTMLOListElement[JC] def appendChild(newChild: Node): Node HTMLOListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLOListElement[JC] def attributes: NamedNodeMap HTMLOListElement[JC] def baseURI: String HTMLOListElement[JC] def before(nodes: Node | String*): Unit HTMLOListElement[JC] def blur(): Unit @@ -9226,6 +9295,7 @@ HTMLOListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLOListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOListElement[JC] def hasAttribute(name: String): Boolean HTMLOListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLOListElement[JC] def hasAttributes(): Boolean HTMLOListElement[JC] def hasChildNodes(): Boolean HTMLOListElement[JC] var id: String HTMLOListElement[JC] var innerHTML: String @@ -9390,6 +9460,7 @@ HTMLObjectElement[JC] var altHtml: String HTMLObjectElement[JC] def append(nodes: Node | String*): Unit HTMLObjectElement[JC] def appendChild(newChild: Node): Node HTMLObjectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLObjectElement[JC] def attributes: NamedNodeMap HTMLObjectElement[JC] def baseURI: String HTMLObjectElement[JC] def before(nodes: Node | String*): Unit HTMLObjectElement[JC] def blur(): Unit @@ -9435,6 +9506,7 @@ HTMLObjectElement[JC] def getSVGDocument(): Document HTMLObjectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLObjectElement[JC] def hasAttribute(name: String): Boolean HTMLObjectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLObjectElement[JC] def hasAttributes(): Boolean HTMLObjectElement[JC] def hasChildNodes(): Boolean HTMLObjectElement[JC] var height: String HTMLObjectElement[JC] var id: String @@ -9606,6 +9678,7 @@ HTMLOptGroupElement[JC] def after(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def append(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def appendChild(newChild: Node): Node HTMLOptGroupElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLOptGroupElement[JC] def attributes: NamedNodeMap HTMLOptGroupElement[JC] def baseURI: String HTMLOptGroupElement[JC] def before(nodes: Node | String*): Unit HTMLOptGroupElement[JC] def blur(): Unit @@ -9646,6 +9719,7 @@ HTMLOptGroupElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLOptGroupElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptGroupElement[JC] def hasAttribute(name: String): Boolean HTMLOptGroupElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLOptGroupElement[JC] def hasAttributes(): Boolean HTMLOptGroupElement[JC] def hasChildNodes(): Boolean HTMLOptGroupElement[JC] var id: String HTMLOptGroupElement[JC] var innerHTML: String @@ -9807,6 +9881,7 @@ HTMLOptionElement[JC] def after(nodes: Node | String*): Unit HTMLOptionElement[JC] def append(nodes: Node | String*): Unit HTMLOptionElement[JC] def appendChild(newChild: Node): Node HTMLOptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLOptionElement[JC] def attributes: NamedNodeMap HTMLOptionElement[JC] def baseURI: String HTMLOptionElement[JC] def before(nodes: Node | String*): Unit HTMLOptionElement[JC] def blur(): Unit @@ -9850,6 +9925,7 @@ HTMLOptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLOptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLOptionElement[JC] def hasAttribute(name: String): Boolean HTMLOptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLOptionElement[JC] def hasAttributes(): Boolean HTMLOptionElement[JC] def hasChildNodes(): Boolean HTMLOptionElement[JC] var id: String HTMLOptionElement[JC] def index: Int @@ -10019,6 +10095,7 @@ HTMLParagraphElement[JC] def after(nodes: Node | String*): Unit HTMLParagraphElement[JC] def append(nodes: Node | String*): Unit HTMLParagraphElement[JC] def appendChild(newChild: Node): Node HTMLParagraphElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLParagraphElement[JC] def attributes: NamedNodeMap HTMLParagraphElement[JC] def baseURI: String HTMLParagraphElement[JC] def before(nodes: Node | String*): Unit HTMLParagraphElement[JC] def blur(): Unit @@ -10058,6 +10135,7 @@ HTMLParagraphElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLParagraphElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParagraphElement[JC] def hasAttribute(name: String): Boolean HTMLParagraphElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLParagraphElement[JC] def hasAttributes(): Boolean HTMLParagraphElement[JC] def hasChildNodes(): Boolean HTMLParagraphElement[JC] var id: String HTMLParagraphElement[JC] var innerHTML: String @@ -10218,6 +10296,7 @@ HTMLParamElement[JC] def after(nodes: Node | String*): Unit HTMLParamElement[JC] def append(nodes: Node | String*): Unit HTMLParamElement[JC] def appendChild(newChild: Node): Node HTMLParamElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLParamElement[JC] def attributes: NamedNodeMap HTMLParamElement[JC] def baseURI: String HTMLParamElement[JC] def before(nodes: Node | String*): Unit HTMLParamElement[JC] def blur(): Unit @@ -10257,6 +10336,7 @@ HTMLParamElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLParamElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLParamElement[JC] def hasAttribute(name: String): Boolean HTMLParamElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLParamElement[JC] def hasAttributes(): Boolean HTMLParamElement[JC] def hasChildNodes(): Boolean HTMLParamElement[JC] var id: String HTMLParamElement[JC] var innerHTML: String @@ -10419,6 +10499,7 @@ HTMLPreElement[JC] def after(nodes: Node | String*): Unit HTMLPreElement[JC] def append(nodes: Node | String*): Unit HTMLPreElement[JC] def appendChild(newChild: Node): Node HTMLPreElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLPreElement[JC] def attributes: NamedNodeMap HTMLPreElement[JC] def baseURI: String HTMLPreElement[JC] def before(nodes: Node | String*): Unit HTMLPreElement[JC] def blur(): Unit @@ -10458,6 +10539,7 @@ HTMLPreElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: S HTMLPreElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLPreElement[JC] def hasAttribute(name: String): Boolean HTMLPreElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLPreElement[JC] def hasAttributes(): Boolean HTMLPreElement[JC] def hasChildNodes(): Boolean HTMLPreElement[JC] var id: String HTMLPreElement[JC] var innerHTML: String @@ -10618,6 +10700,7 @@ HTMLProgressElement[JC] def after(nodes: Node | String*): Unit HTMLProgressElement[JC] def append(nodes: Node | String*): Unit HTMLProgressElement[JC] def appendChild(newChild: Node): Node HTMLProgressElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLProgressElement[JC] def attributes: NamedNodeMap HTMLProgressElement[JC] def baseURI: String HTMLProgressElement[JC] def before(nodes: Node | String*): Unit HTMLProgressElement[JC] def blur(): Unit @@ -10658,6 +10741,7 @@ HTMLProgressElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLProgressElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLProgressElement[JC] def hasAttribute(name: String): Boolean HTMLProgressElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLProgressElement[JC] def hasAttributes(): Boolean HTMLProgressElement[JC] def hasChildNodes(): Boolean HTMLProgressElement[JC] var id: String HTMLProgressElement[JC] var innerHTML: String @@ -10821,6 +10905,7 @@ HTMLQuoteElement[JC] def after(nodes: Node | String*): Unit HTMLQuoteElement[JC] def append(nodes: Node | String*): Unit HTMLQuoteElement[JC] def appendChild(newChild: Node): Node HTMLQuoteElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLQuoteElement[JC] def attributes: NamedNodeMap HTMLQuoteElement[JC] def baseURI: String HTMLQuoteElement[JC] def before(nodes: Node | String*): Unit HTMLQuoteElement[JC] def blur(): Unit @@ -10862,6 +10947,7 @@ HTMLQuoteElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLQuoteElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLQuoteElement[JC] def hasAttribute(name: String): Boolean HTMLQuoteElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLQuoteElement[JC] def hasAttributes(): Boolean HTMLQuoteElement[JC] def hasChildNodes(): Boolean HTMLQuoteElement[JC] var id: String HTMLQuoteElement[JC] var innerHTML: String @@ -11023,6 +11109,7 @@ HTMLScriptElement[JC] def append(nodes: Node | String*): Unit HTMLScriptElement[JC] def appendChild(newChild: Node): Node HTMLScriptElement[JC] var async: Boolean HTMLScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLScriptElement[JC] def attributes: NamedNodeMap HTMLScriptElement[JC] def baseURI: String HTMLScriptElement[JC] def before(nodes: Node | String*): Unit HTMLScriptElement[JC] def blur(): Unit @@ -11065,6 +11152,7 @@ HTMLScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLScriptElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLScriptElement[JC] def hasAttribute(name: String): Boolean HTMLScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLScriptElement[JC] def hasAttributes(): Boolean HTMLScriptElement[JC] def hasChildNodes(): Boolean HTMLScriptElement[JC] var id: String HTMLScriptElement[JC] var innerHTML: String @@ -11231,6 +11319,7 @@ HTMLSelectElement[JC] def append(nodes: Node | String*): Unit HTMLSelectElement[JC] def appendChild(newChild: Node): Node HTMLSelectElement[JC] @scala.scalajs.js.annotation.JSBracketAccess def apply(name: String): js.Any HTMLSelectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLSelectElement[JC] def attributes: NamedNodeMap HTMLSelectElement[JC] var autofocus: Boolean HTMLSelectElement[JC] def baseURI: String HTMLSelectElement[JC] def before(nodes: Node | String*): Unit @@ -11274,6 +11363,7 @@ HTMLSelectElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSelectElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSelectElement[JC] def hasAttribute(name: String): Boolean HTMLSelectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLSelectElement[JC] def hasAttributes(): Boolean HTMLSelectElement[JC] def hasChildNodes(): Boolean HTMLSelectElement[JC] var id: String HTMLSelectElement[JC] var innerHTML: String @@ -11452,6 +11542,7 @@ HTMLSourceElement[JC] def after(nodes: Node | String*): Unit HTMLSourceElement[JC] def append(nodes: Node | String*): Unit HTMLSourceElement[JC] def appendChild(newChild: Node): Node HTMLSourceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLSourceElement[JC] def attributes: NamedNodeMap HTMLSourceElement[JC] def baseURI: String HTMLSourceElement[JC] def before(nodes: Node | String*): Unit HTMLSourceElement[JC] def blur(): Unit @@ -11491,6 +11582,7 @@ HTMLSourceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName HTMLSourceElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSourceElement[JC] def hasAttribute(name: String): Boolean HTMLSourceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLSourceElement[JC] def hasAttributes(): Boolean HTMLSourceElement[JC] def hasChildNodes(): Boolean HTMLSourceElement[JC] var id: String HTMLSourceElement[JC] var innerHTML: String @@ -11654,6 +11746,7 @@ HTMLSpanElement[JC] def after(nodes: Node | String*): Unit HTMLSpanElement[JC] def append(nodes: Node | String*): Unit HTMLSpanElement[JC] def appendChild(newChild: Node): Node HTMLSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLSpanElement[JC] def attributes: NamedNodeMap HTMLSpanElement[JC] def baseURI: String HTMLSpanElement[JC] def before(nodes: Node | String*): Unit HTMLSpanElement[JC] def blur(): Unit @@ -11693,6 +11786,7 @@ HTMLSpanElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLSpanElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLSpanElement[JC] def hasAttribute(name: String): Boolean HTMLSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLSpanElement[JC] def hasAttributes(): Boolean HTMLSpanElement[JC] def hasChildNodes(): Boolean HTMLSpanElement[JC] var id: String HTMLSpanElement[JC] var innerHTML: String @@ -11853,6 +11947,7 @@ HTMLStyleElement[JC] def after(nodes: Node | String*): Unit HTMLStyleElement[JC] def append(nodes: Node | String*): Unit HTMLStyleElement[JC] def appendChild(newChild: Node): Node HTMLStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLStyleElement[JC] def attributes: NamedNodeMap HTMLStyleElement[JC] def baseURI: String HTMLStyleElement[JC] def before(nodes: Node | String*): Unit HTMLStyleElement[JC] def blur(): Unit @@ -11892,6 +11987,7 @@ HTMLStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLStyleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLStyleElement[JC] def hasAttribute(name: String): Boolean HTMLStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLStyleElement[JC] def hasAttributes(): Boolean HTMLStyleElement[JC] def hasChildNodes(): Boolean HTMLStyleElement[JC] var id: String HTMLStyleElement[JC] var innerHTML: String @@ -12056,6 +12152,7 @@ HTMLTableCaptionElement[JC] def after(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def append(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def appendChild(newChild: Node): Node HTMLTableCaptionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableCaptionElement[JC] def attributes: NamedNodeMap HTMLTableCaptionElement[JC] def baseURI: String HTMLTableCaptionElement[JC] def before(nodes: Node | String*): Unit HTMLTableCaptionElement[JC] def blur(): Unit @@ -12095,6 +12192,7 @@ HTMLTableCaptionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableCaptionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCaptionElement[JC] def hasAttribute(name: String): Boolean HTMLTableCaptionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableCaptionElement[JC] def hasAttributes(): Boolean HTMLTableCaptionElement[JC] def hasChildNodes(): Boolean HTMLTableCaptionElement[JC] var id: String HTMLTableCaptionElement[JC] var innerHTML: String @@ -12255,6 +12353,7 @@ HTMLTableCellElement[JC] def after(nodes: Node | String*): Unit HTMLTableCellElement[JC] def append(nodes: Node | String*): Unit HTMLTableCellElement[JC] def appendChild(newChild: Node): Node HTMLTableCellElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableCellElement[JC] def attributes: NamedNodeMap HTMLTableCellElement[JC] def baseURI: String HTMLTableCellElement[JC] def before(nodes: Node | String*): Unit HTMLTableCellElement[JC] def blur(): Unit @@ -12296,6 +12395,7 @@ HTMLTableCellElement[JC] def getElementsByTagNameNS(namespaceURI: String, localN HTMLTableCellElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableCellElement[JC] def hasAttribute(name: String): Boolean HTMLTableCellElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableCellElement[JC] def hasAttributes(): Boolean HTMLTableCellElement[JC] def hasChildNodes(): Boolean HTMLTableCellElement[JC] def headers: String HTMLTableCellElement[JC] var id: String @@ -12458,6 +12558,7 @@ HTMLTableColElement[JC] def after(nodes: Node | String*): Unit HTMLTableColElement[JC] def append(nodes: Node | String*): Unit HTMLTableColElement[JC] def appendChild(newChild: Node): Node HTMLTableColElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableColElement[JC] def attributes: NamedNodeMap HTMLTableColElement[JC] def baseURI: String HTMLTableColElement[JC] def before(nodes: Node | String*): Unit HTMLTableColElement[JC] def blur(): Unit @@ -12497,6 +12598,7 @@ HTMLTableColElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableColElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableColElement[JC] def hasAttribute(name: String): Boolean HTMLTableColElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableColElement[JC] def hasAttributes(): Boolean HTMLTableColElement[JC] def hasChildNodes(): Boolean HTMLTableColElement[JC] var id: String HTMLTableColElement[JC] var innerHTML: String @@ -12658,6 +12760,7 @@ HTMLTableElement[JC] def after(nodes: Node | String*): Unit HTMLTableElement[JC] def append(nodes: Node | String*): Unit HTMLTableElement[JC] def appendChild(newChild: Node): Node HTMLTableElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableElement[JC] def attributes: NamedNodeMap HTMLTableElement[JC] def baseURI: String HTMLTableElement[JC] def before(nodes: Node | String*): Unit HTMLTableElement[JC] def blur(): Unit @@ -12706,6 +12809,7 @@ HTMLTableElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTableElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableElement[JC] def hasAttribute(name: String): Boolean HTMLTableElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableElement[JC] def hasAttributes(): Boolean HTMLTableElement[JC] def hasChildNodes(): Boolean HTMLTableElement[JC] var id: String HTMLTableElement[JC] var innerHTML: String @@ -12872,6 +12976,7 @@ HTMLTableRowElement[JC] def after(nodes: Node | String*): Unit HTMLTableRowElement[JC] def append(nodes: Node | String*): Unit HTMLTableRowElement[JC] def appendChild(newChild: Node): Node HTMLTableRowElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableRowElement[JC] def attributes: NamedNodeMap HTMLTableRowElement[JC] def baseURI: String HTMLTableRowElement[JC] def before(nodes: Node | String*): Unit HTMLTableRowElement[JC] def blur(): Unit @@ -12916,6 +13021,7 @@ HTMLTableRowElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTableRowElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableRowElement[JC] def hasAttribute(name: String): Boolean HTMLTableRowElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableRowElement[JC] def hasAttributes(): Boolean HTMLTableRowElement[JC] def hasChildNodes(): Boolean HTMLTableRowElement[JC] var height: js.Any HTMLTableRowElement[JC] var id: String @@ -13080,6 +13186,7 @@ HTMLTableSectionElement[JC] def after(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def append(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def appendChild(newChild: Node): Node HTMLTableSectionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTableSectionElement[JC] def attributes: NamedNodeMap HTMLTableSectionElement[JC] def baseURI: String HTMLTableSectionElement[JC] def before(nodes: Node | String*): Unit HTMLTableSectionElement[JC] def blur(): Unit @@ -13120,6 +13227,7 @@ HTMLTableSectionElement[JC] def getElementsByTagNameNS(namespaceURI: String, loc HTMLTableSectionElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTableSectionElement[JC] def hasAttribute(name: String): Boolean HTMLTableSectionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTableSectionElement[JC] def hasAttributes(): Boolean HTMLTableSectionElement[JC] def hasChildNodes(): Boolean HTMLTableSectionElement[JC] var id: String HTMLTableSectionElement[JC] var innerHTML: String @@ -13283,6 +13391,7 @@ HTMLTemplateElement[JC] def after(nodes: Node | String*): Unit HTMLTemplateElement[JC] def append(nodes: Node | String*): Unit HTMLTemplateElement[JC] def appendChild(newChild: Node): Node HTMLTemplateElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTemplateElement[JC] def attributes: NamedNodeMap HTMLTemplateElement[JC] def baseURI: String HTMLTemplateElement[JC] def before(nodes: Node | String*): Unit HTMLTemplateElement[JC] def blur(): Unit @@ -13323,6 +13432,7 @@ HTMLTemplateElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTemplateElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTemplateElement[JC] def hasAttribute(name: String): Boolean HTMLTemplateElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTemplateElement[JC] def hasAttributes(): Boolean HTMLTemplateElement[JC] def hasChildNodes(): Boolean HTMLTemplateElement[JC] var id: String HTMLTemplateElement[JC] var innerHTML: String @@ -13483,6 +13593,7 @@ HTMLTextAreaElement[JC] def after(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def append(nodes: Node | String*): Unit HTMLTextAreaElement[JC] def appendChild(newChild: Node): Node HTMLTextAreaElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTextAreaElement[JC] def attributes: NamedNodeMap HTMLTextAreaElement[JC] var autofocus: Boolean HTMLTextAreaElement[JC] def baseURI: String HTMLTextAreaElement[JC] def before(nodes: Node | String*): Unit @@ -13528,6 +13639,7 @@ HTMLTextAreaElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNa HTMLTextAreaElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTextAreaElement[JC] def hasAttribute(name: String): Boolean HTMLTextAreaElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTextAreaElement[JC] def hasAttributes(): Boolean HTMLTextAreaElement[JC] def hasChildNodes(): Boolean HTMLTextAreaElement[JC] var id: String HTMLTextAreaElement[JC] var innerHTML: String @@ -13707,6 +13819,7 @@ HTMLTitleElement[JC] def after(nodes: Node | String*): Unit HTMLTitleElement[JC] def append(nodes: Node | String*): Unit HTMLTitleElement[JC] def appendChild(newChild: Node): Node HTMLTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTitleElement[JC] def attributes: NamedNodeMap HTMLTitleElement[JC] def baseURI: String HTMLTitleElement[JC] def before(nodes: Node | String*): Unit HTMLTitleElement[JC] def blur(): Unit @@ -13746,6 +13859,7 @@ HTMLTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTitleElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTitleElement[JC] def hasAttribute(name: String): Boolean HTMLTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTitleElement[JC] def hasAttributes(): Boolean HTMLTitleElement[JC] def hasChildNodes(): Boolean HTMLTitleElement[JC] var id: String HTMLTitleElement[JC] var innerHTML: String @@ -13907,6 +14021,7 @@ HTMLTrackElement[JC] def after(nodes: Node | String*): Unit HTMLTrackElement[JC] def append(nodes: Node | String*): Unit HTMLTrackElement[JC] def appendChild(newChild: Node): Node HTMLTrackElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLTrackElement[JC] def attributes: NamedNodeMap HTMLTrackElement[JC] def baseURI: String HTMLTrackElement[JC] def before(nodes: Node | String*): Unit HTMLTrackElement[JC] def blur(): Unit @@ -13946,6 +14061,7 @@ HTMLTrackElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLTrackElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLTrackElement[JC] def hasAttribute(name: String): Boolean HTMLTrackElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLTrackElement[JC] def hasAttributes(): Boolean HTMLTrackElement[JC] def hasChildNodes(): Boolean HTMLTrackElement[JC] var id: String HTMLTrackElement[JC] var innerHTML: String @@ -14111,6 +14227,7 @@ HTMLUListElement[JC] def after(nodes: Node | String*): Unit HTMLUListElement[JC] def append(nodes: Node | String*): Unit HTMLUListElement[JC] def appendChild(newChild: Node): Node HTMLUListElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLUListElement[JC] def attributes: NamedNodeMap HTMLUListElement[JC] def baseURI: String HTMLUListElement[JC] def before(nodes: Node | String*): Unit HTMLUListElement[JC] def blur(): Unit @@ -14150,6 +14267,7 @@ HTMLUListElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLUListElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUListElement[JC] def hasAttribute(name: String): Boolean HTMLUListElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLUListElement[JC] def hasAttributes(): Boolean HTMLUListElement[JC] def hasChildNodes(): Boolean HTMLUListElement[JC] var id: String HTMLUListElement[JC] var innerHTML: String @@ -14310,6 +14428,7 @@ HTMLUnknownElement[JC] def after(nodes: Node | String*): Unit HTMLUnknownElement[JC] def append(nodes: Node | String*): Unit HTMLUnknownElement[JC] def appendChild(newChild: Node): Node HTMLUnknownElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLUnknownElement[JC] def attributes: NamedNodeMap HTMLUnknownElement[JC] def baseURI: String HTMLUnknownElement[JC] def before(nodes: Node | String*): Unit HTMLUnknownElement[JC] def blur(): Unit @@ -14349,6 +14468,7 @@ HTMLUnknownElement[JC] def getElementsByTagNameNS(namespaceURI: String, localNam HTMLUnknownElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLUnknownElement[JC] def hasAttribute(name: String): Boolean HTMLUnknownElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLUnknownElement[JC] def hasAttributes(): Boolean HTMLUnknownElement[JC] def hasChildNodes(): Boolean HTMLUnknownElement[JC] var id: String HTMLUnknownElement[JC] var innerHTML: String @@ -14509,6 +14629,7 @@ HTMLVideoElement[JC] def after(nodes: Node | String*): Unit HTMLVideoElement[JC] def append(nodes: Node | String*): Unit HTMLVideoElement[JC] def appendChild(newChild: Node): Node HTMLVideoElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +HTMLVideoElement[JC] def attributes: NamedNodeMap HTMLVideoElement[JC] def audioTracks: AudioTrackList HTMLVideoElement[JC] var autoplay: Boolean HTMLVideoElement[JC] def baseURI: String @@ -14559,6 +14680,7 @@ HTMLVideoElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: HTMLVideoElement[JC] var gotpointercapture: js.Function1[PointerEvent, _] HTMLVideoElement[JC] def hasAttribute(name: String): Boolean HTMLVideoElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +HTMLVideoElement[JC] def hasAttributes(): Boolean HTMLVideoElement[JC] def hasChildNodes(): Boolean HTMLVideoElement[JC] var height: Int HTMLVideoElement[JC] var id: String @@ -15021,6 +15143,7 @@ Image[JC] var alt: String Image[JC] def append(nodes: Node | String*): Unit Image[JC] def appendChild(newChild: Node): Node Image[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +Image[JC] def attributes: NamedNodeMap Image[JC] def baseURI: String Image[JC] def before(nodes: Node | String*): Unit Image[JC] def blur(): Unit @@ -15062,6 +15185,7 @@ Image[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): H Image[JC] var gotpointercapture: js.Function1[PointerEvent, _] Image[JC] def hasAttribute(name: String): Boolean Image[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +Image[JC] def hasAttributes(): Boolean Image[JC] def hasChildNodes(): Boolean Image[JC] var height: Int Image[JC] var href: String @@ -17235,6 +17359,7 @@ SVGAElement[JC] def after(nodes: Node | String*): Unit SVGAElement[JC] def append(nodes: Node | String*): Unit SVGAElement[JC] def appendChild(newChild: Node): Node SVGAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGAElement[JC] def attributes: NamedNodeMap SVGAElement[JC] def baseURI: String SVGAElement[JC] def before(nodes: Node | String*): Unit SVGAElement[JC] def childElementCount: Int @@ -17270,6 +17395,7 @@ SVGAElement[JC] def getScreenCTM(): SVGMatrix SVGAElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGAElement[JC] def hasAttribute(name: String): Boolean SVGAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGAElement[JC] def hasAttributes(): Boolean SVGAElement[JC] def hasChildNodes(): Boolean SVGAElement[JC] def hasExtension(extension: String): Boolean SVGAElement[JC] var href: SVGAnimatedString @@ -17402,6 +17528,7 @@ SVGCircleElement[JC] def after(nodes: Node | String*): Unit SVGCircleElement[JC] def append(nodes: Node | String*): Unit SVGCircleElement[JC] def appendChild(newChild: Node): Node SVGCircleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGCircleElement[JC] def attributes: NamedNodeMap SVGCircleElement[JC] def baseURI: String SVGCircleElement[JC] def before(nodes: Node | String*): Unit SVGCircleElement[JC] def childElementCount: Int @@ -17439,6 +17566,7 @@ SVGCircleElement[JC] def getScreenCTM(): SVGMatrix SVGCircleElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGCircleElement[JC] def hasAttribute(name: String): Boolean SVGCircleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGCircleElement[JC] def hasAttributes(): Boolean SVGCircleElement[JC] def hasChildNodes(): Boolean SVGCircleElement[JC] def hasExtension(extension: String): Boolean SVGCircleElement[JC] var id: String @@ -17535,6 +17663,7 @@ SVGClipPathElement[JC] def after(nodes: Node | String*): Unit SVGClipPathElement[JC] def append(nodes: Node | String*): Unit SVGClipPathElement[JC] def appendChild(newChild: Node): Node SVGClipPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGClipPathElement[JC] def attributes: NamedNodeMap SVGClipPathElement[JC] def baseURI: String SVGClipPathElement[JC] def before(nodes: Node | String*): Unit SVGClipPathElement[JC] def childElementCount: Int @@ -17571,6 +17700,7 @@ SVGClipPathElement[JC] def getScreenCTM(): SVGMatrix SVGClipPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGClipPathElement[JC] def hasAttribute(name: String): Boolean SVGClipPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGClipPathElement[JC] def hasAttributes(): Boolean SVGClipPathElement[JC] def hasChildNodes(): Boolean SVGClipPathElement[JC] def hasExtension(extension: String): Boolean SVGClipPathElement[JC] var id: String @@ -17664,6 +17794,7 @@ SVGComponentTransferFunctionElement[JC] def amplitude: SVGAnimatedNumber SVGComponentTransferFunctionElement[JC] def append(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def appendChild(newChild: Node): Node SVGComponentTransferFunctionElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGComponentTransferFunctionElement[JC] def attributes: NamedNodeMap SVGComponentTransferFunctionElement[JC] def baseURI: String SVGComponentTransferFunctionElement[JC] def before(nodes: Node | String*): Unit SVGComponentTransferFunctionElement[JC] def childElementCount: Int @@ -17693,6 +17824,7 @@ SVGComponentTransferFunctionElement[JC] def getElementsByTagName(name: String): SVGComponentTransferFunctionElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGComponentTransferFunctionElement[JC] def hasAttribute(name: String): Boolean SVGComponentTransferFunctionElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGComponentTransferFunctionElement[JC] def hasAttributes(): Boolean SVGComponentTransferFunctionElement[JC] def hasChildNodes(): Boolean SVGComponentTransferFunctionElement[JC] var id: String SVGComponentTransferFunctionElement[JC] var innerHTML: String @@ -17787,6 +17919,7 @@ SVGDefsElement[JC] def after(nodes: Node | String*): Unit SVGDefsElement[JC] def append(nodes: Node | String*): Unit SVGDefsElement[JC] def appendChild(newChild: Node): Node SVGDefsElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGDefsElement[JC] def attributes: NamedNodeMap SVGDefsElement[JC] def baseURI: String SVGDefsElement[JC] def before(nodes: Node | String*): Unit SVGDefsElement[JC] def childElementCount: Int @@ -17822,6 +17955,7 @@ SVGDefsElement[JC] def getScreenCTM(): SVGMatrix SVGDefsElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGDefsElement[JC] def hasAttribute(name: String): Boolean SVGDefsElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGDefsElement[JC] def hasAttributes(): Boolean SVGDefsElement[JC] def hasChildNodes(): Boolean SVGDefsElement[JC] def hasExtension(extension: String): Boolean SVGDefsElement[JC] var id: String @@ -17914,6 +18048,7 @@ SVGDescElement[JC] def after(nodes: Node | String*): Unit SVGDescElement[JC] def append(nodes: Node | String*): Unit SVGDescElement[JC] def appendChild(newChild: Node): Node SVGDescElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGDescElement[JC] def attributes: NamedNodeMap SVGDescElement[JC] def baseURI: String SVGDescElement[JC] def before(nodes: Node | String*): Unit SVGDescElement[JC] def childElementCount: Int @@ -17943,6 +18078,7 @@ SVGDescElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGDescElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGDescElement[JC] def hasAttribute(name: String): Boolean SVGDescElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGDescElement[JC] def hasAttributes(): Boolean SVGDescElement[JC] def hasChildNodes(): Boolean SVGDescElement[JC] var id: String SVGDescElement[JC] var innerHTML: String @@ -18029,6 +18165,7 @@ SVGElement[JC] def after(nodes: Node | String*): Unit SVGElement[JC] def append(nodes: Node | String*): Unit SVGElement[JC] def appendChild(newChild: Node): Node SVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGElement[JC] def attributes: NamedNodeMap SVGElement[JC] def baseURI: String SVGElement[JC] def before(nodes: Node | String*): Unit SVGElement[JC] def childElementCount: Int @@ -18057,6 +18194,7 @@ SVGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Element] SVGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGElement[JC] def hasAttribute(name: String): Boolean SVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGElement[JC] def hasAttributes(): Boolean SVGElement[JC] def hasChildNodes(): Boolean SVGElement[JC] var id: String SVGElement[JC] var innerHTML: String @@ -18155,6 +18293,7 @@ SVGEllipseElement[JC] def after(nodes: Node | String*): Unit SVGEllipseElement[JC] def append(nodes: Node | String*): Unit SVGEllipseElement[JC] def appendChild(newChild: Node): Node SVGEllipseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGEllipseElement[JC] def attributes: NamedNodeMap SVGEllipseElement[JC] def baseURI: String SVGEllipseElement[JC] def before(nodes: Node | String*): Unit SVGEllipseElement[JC] def childElementCount: Int @@ -18192,6 +18331,7 @@ SVGEllipseElement[JC] def getScreenCTM(): SVGMatrix SVGEllipseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGEllipseElement[JC] def hasAttribute(name: String): Boolean SVGEllipseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGEllipseElement[JC] def hasAttributes(): Boolean SVGEllipseElement[JC] def hasChildNodes(): Boolean SVGEllipseElement[JC] def hasExtension(extension: String): Boolean SVGEllipseElement[JC] var id: String @@ -18293,6 +18433,7 @@ SVGFEBlendElement[JC] def after(nodes: Node | String*): Unit SVGFEBlendElement[JC] def append(nodes: Node | String*): Unit SVGFEBlendElement[JC] def appendChild(newChild: Node): Node SVGFEBlendElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEBlendElement[JC] def attributes: NamedNodeMap SVGFEBlendElement[JC] def baseURI: String SVGFEBlendElement[JC] def before(nodes: Node | String*): Unit SVGFEBlendElement[JC] def childElementCount: Int @@ -18322,6 +18463,7 @@ SVGFEBlendElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEBlendElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEBlendElement[JC] def hasAttribute(name: String): Boolean SVGFEBlendElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEBlendElement[JC] def hasAttributes(): Boolean SVGFEBlendElement[JC] def hasChildNodes(): Boolean SVGFEBlendElement[JC] def height: SVGAnimatedLength SVGFEBlendElement[JC] var id: String @@ -18420,6 +18562,7 @@ SVGFEColorMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEColorMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEColorMatrixElement[JC] def attributes: NamedNodeMap SVGFEColorMatrixElement[JC] def baseURI: String SVGFEColorMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEColorMatrixElement[JC] def childElementCount: Int @@ -18449,6 +18592,7 @@ SVGFEColorMatrixElement[JC] def getElementsByTagName(name: String): HTMLCollecti SVGFEColorMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEColorMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEColorMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEColorMatrixElement[JC] def hasAttributes(): Boolean SVGFEColorMatrixElement[JC] def hasChildNodes(): Boolean SVGFEColorMatrixElement[JC] def height: SVGAnimatedLength SVGFEColorMatrixElement[JC] var id: String @@ -18546,6 +18690,7 @@ SVGFEComponentTransferElement[JC] def after(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def append(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def appendChild(newChild: Node): Node SVGFEComponentTransferElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEComponentTransferElement[JC] def attributes: NamedNodeMap SVGFEComponentTransferElement[JC] def baseURI: String SVGFEComponentTransferElement[JC] def before(nodes: Node | String*): Unit SVGFEComponentTransferElement[JC] def childElementCount: Int @@ -18575,6 +18720,7 @@ SVGFEComponentTransferElement[JC] def getElementsByTagName(name: String): HTMLCo SVGFEComponentTransferElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEComponentTransferElement[JC] def hasAttribute(name: String): Boolean SVGFEComponentTransferElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEComponentTransferElement[JC] def hasAttributes(): Boolean SVGFEComponentTransferElement[JC] def hasChildNodes(): Boolean SVGFEComponentTransferElement[JC] def height: SVGAnimatedLength SVGFEComponentTransferElement[JC] var id: String @@ -18665,6 +18811,7 @@ SVGFECompositeElement[JC] def after(nodes: Node | String*): Unit SVGFECompositeElement[JC] def append(nodes: Node | String*): Unit SVGFECompositeElement[JC] def appendChild(newChild: Node): Node SVGFECompositeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFECompositeElement[JC] def attributes: NamedNodeMap SVGFECompositeElement[JC] def baseURI: String SVGFECompositeElement[JC] def before(nodes: Node | String*): Unit SVGFECompositeElement[JC] def childElementCount: Int @@ -18694,6 +18841,7 @@ SVGFECompositeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFECompositeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFECompositeElement[JC] def hasAttribute(name: String): Boolean SVGFECompositeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFECompositeElement[JC] def hasAttributes(): Boolean SVGFECompositeElement[JC] def hasChildNodes(): Boolean SVGFECompositeElement[JC] def height: SVGAnimatedLength SVGFECompositeElement[JC] var id: String @@ -18797,6 +18945,7 @@ SVGFEConvolveMatrixElement[JC] def after(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def append(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def appendChild(newChild: Node): Node SVGFEConvolveMatrixElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEConvolveMatrixElement[JC] def attributes: NamedNodeMap SVGFEConvolveMatrixElement[JC] def baseURI: String SVGFEConvolveMatrixElement[JC] def before(nodes: Node | String*): Unit SVGFEConvolveMatrixElement[JC] def bias: SVGAnimatedNumber @@ -18829,6 +18978,7 @@ SVGFEConvolveMatrixElement[JC] def getElementsByTagName(name: String): HTMLColle SVGFEConvolveMatrixElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEConvolveMatrixElement[JC] def hasAttribute(name: String): Boolean SVGFEConvolveMatrixElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEConvolveMatrixElement[JC] def hasAttributes(): Boolean SVGFEConvolveMatrixElement[JC] def hasChildNodes(): Boolean SVGFEConvolveMatrixElement[JC] def height: SVGAnimatedLength SVGFEConvolveMatrixElement[JC] var id: String @@ -18931,6 +19081,7 @@ SVGFEDiffuseLightingElement[JC] def after(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def append(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def appendChild(newChild: Node): Node SVGFEDiffuseLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEDiffuseLightingElement[JC] def attributes: NamedNodeMap SVGFEDiffuseLightingElement[JC] def baseURI: String SVGFEDiffuseLightingElement[JC] def before(nodes: Node | String*): Unit SVGFEDiffuseLightingElement[JC] def childElementCount: Int @@ -18961,6 +19112,7 @@ SVGFEDiffuseLightingElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDiffuseLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDiffuseLightingElement[JC] def hasAttribute(name: String): Boolean SVGFEDiffuseLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEDiffuseLightingElement[JC] def hasAttributes(): Boolean SVGFEDiffuseLightingElement[JC] def hasChildNodes(): Boolean SVGFEDiffuseLightingElement[JC] def height: SVGAnimatedLength SVGFEDiffuseLightingElement[JC] var id: String @@ -19054,6 +19206,7 @@ SVGFEDisplacementMapElement[JC] def after(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def append(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def appendChild(newChild: Node): Node SVGFEDisplacementMapElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEDisplacementMapElement[JC] def attributes: NamedNodeMap SVGFEDisplacementMapElement[JC] def baseURI: String SVGFEDisplacementMapElement[JC] def before(nodes: Node | String*): Unit SVGFEDisplacementMapElement[JC] def childElementCount: Int @@ -19083,6 +19236,7 @@ SVGFEDisplacementMapElement[JC] def getElementsByTagName(name: String): HTMLColl SVGFEDisplacementMapElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDisplacementMapElement[JC] def hasAttribute(name: String): Boolean SVGFEDisplacementMapElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEDisplacementMapElement[JC] def hasAttributes(): Boolean SVGFEDisplacementMapElement[JC] def hasChildNodes(): Boolean SVGFEDisplacementMapElement[JC] def height: SVGAnimatedLength SVGFEDisplacementMapElement[JC] var id: String @@ -19182,6 +19336,7 @@ SVGFEDistantLightElement[JC] def after(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def append(nodes: Node | String*): Unit SVGFEDistantLightElement[JC] def appendChild(newChild: Node): Node SVGFEDistantLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEDistantLightElement[JC] def attributes: NamedNodeMap SVGFEDistantLightElement[JC] def azimuth: SVGAnimatedNumber SVGFEDistantLightElement[JC] def baseURI: String SVGFEDistantLightElement[JC] def before(nodes: Node | String*): Unit @@ -19212,6 +19367,7 @@ SVGFEDistantLightElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEDistantLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEDistantLightElement[JC] def hasAttribute(name: String): Boolean SVGFEDistantLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEDistantLightElement[JC] def hasAttributes(): Boolean SVGFEDistantLightElement[JC] def hasChildNodes(): Boolean SVGFEDistantLightElement[JC] var id: String SVGFEDistantLightElement[JC] var innerHTML: String @@ -19295,6 +19451,7 @@ SVGFEFloodElement[JC] def after(nodes: Node | String*): Unit SVGFEFloodElement[JC] def append(nodes: Node | String*): Unit SVGFEFloodElement[JC] def appendChild(newChild: Node): Node SVGFEFloodElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFloodElement[JC] def attributes: NamedNodeMap SVGFEFloodElement[JC] def baseURI: String SVGFEFloodElement[JC] def before(nodes: Node | String*): Unit SVGFEFloodElement[JC] def childElementCount: Int @@ -19324,6 +19481,7 @@ SVGFEFloodElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFloodElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFloodElement[JC] def hasAttribute(name: String): Boolean SVGFEFloodElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFloodElement[JC] def hasAttributes(): Boolean SVGFEFloodElement[JC] def hasChildNodes(): Boolean SVGFEFloodElement[JC] def height: SVGAnimatedLength SVGFEFloodElement[JC] var id: String @@ -19414,6 +19572,7 @@ SVGFEFuncAElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncAElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def appendChild(newChild: Node): Node SVGFEFuncAElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncAElement[JC] def attributes: NamedNodeMap SVGFEFuncAElement[JC] def baseURI: String SVGFEFuncAElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncAElement[JC] def childElementCount: Int @@ -19443,6 +19602,7 @@ SVGFEFuncAElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncAElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncAElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncAElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncAElement[JC] def hasAttributes(): Boolean SVGFEFuncAElement[JC] def hasChildNodes(): Boolean SVGFEFuncAElement[JC] var id: String SVGFEFuncAElement[JC] var innerHTML: String @@ -19532,6 +19692,7 @@ SVGFEFuncBElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncBElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def appendChild(newChild: Node): Node SVGFEFuncBElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncBElement[JC] def attributes: NamedNodeMap SVGFEFuncBElement[JC] def baseURI: String SVGFEFuncBElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncBElement[JC] def childElementCount: Int @@ -19561,6 +19722,7 @@ SVGFEFuncBElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncBElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncBElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncBElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncBElement[JC] def hasAttributes(): Boolean SVGFEFuncBElement[JC] def hasChildNodes(): Boolean SVGFEFuncBElement[JC] var id: String SVGFEFuncBElement[JC] var innerHTML: String @@ -19650,6 +19812,7 @@ SVGFEFuncGElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncGElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def appendChild(newChild: Node): Node SVGFEFuncGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncGElement[JC] def attributes: NamedNodeMap SVGFEFuncGElement[JC] def baseURI: String SVGFEFuncGElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncGElement[JC] def childElementCount: Int @@ -19679,6 +19842,7 @@ SVGFEFuncGElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncGElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncGElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncGElement[JC] def hasAttributes(): Boolean SVGFEFuncGElement[JC] def hasChildNodes(): Boolean SVGFEFuncGElement[JC] var id: String SVGFEFuncGElement[JC] var innerHTML: String @@ -19768,6 +19932,7 @@ SVGFEFuncRElement[JC] def amplitude: SVGAnimatedNumber SVGFEFuncRElement[JC] def append(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def appendChild(newChild: Node): Node SVGFEFuncRElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEFuncRElement[JC] def attributes: NamedNodeMap SVGFEFuncRElement[JC] def baseURI: String SVGFEFuncRElement[JC] def before(nodes: Node | String*): Unit SVGFEFuncRElement[JC] def childElementCount: Int @@ -19797,6 +19962,7 @@ SVGFEFuncRElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEFuncRElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEFuncRElement[JC] def hasAttribute(name: String): Boolean SVGFEFuncRElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEFuncRElement[JC] def hasAttributes(): Boolean SVGFEFuncRElement[JC] def hasChildNodes(): Boolean SVGFEFuncRElement[JC] var id: String SVGFEFuncRElement[JC] var innerHTML: String @@ -19885,6 +20051,7 @@ SVGFEGaussianBlurElement[JC] def after(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def append(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def appendChild(newChild: Node): Node SVGFEGaussianBlurElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEGaussianBlurElement[JC] def attributes: NamedNodeMap SVGFEGaussianBlurElement[JC] def baseURI: String SVGFEGaussianBlurElement[JC] def before(nodes: Node | String*): Unit SVGFEGaussianBlurElement[JC] def childElementCount: Int @@ -19914,6 +20081,7 @@ SVGFEGaussianBlurElement[JC] def getElementsByTagName(name: String): HTMLCollect SVGFEGaussianBlurElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEGaussianBlurElement[JC] def hasAttribute(name: String): Boolean SVGFEGaussianBlurElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEGaussianBlurElement[JC] def hasAttributes(): Boolean SVGFEGaussianBlurElement[JC] def hasChildNodes(): Boolean SVGFEGaussianBlurElement[JC] def height: SVGAnimatedLength SVGFEGaussianBlurElement[JC] var id: String @@ -20007,6 +20175,7 @@ SVGFEImageElement[JC] def after(nodes: Node | String*): Unit SVGFEImageElement[JC] def append(nodes: Node | String*): Unit SVGFEImageElement[JC] def appendChild(newChild: Node): Node SVGFEImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEImageElement[JC] def attributes: NamedNodeMap SVGFEImageElement[JC] def baseURI: String SVGFEImageElement[JC] def before(nodes: Node | String*): Unit SVGFEImageElement[JC] def childElementCount: Int @@ -20037,6 +20206,7 @@ SVGFEImageElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEImageElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEImageElement[JC] def hasAttribute(name: String): Boolean SVGFEImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEImageElement[JC] def hasAttributes(): Boolean SVGFEImageElement[JC] def hasChildNodes(): Boolean SVGFEImageElement[JC] def height: SVGAnimatedLength SVGFEImageElement[JC] var href: SVGAnimatedString @@ -20130,6 +20300,7 @@ SVGFEMergeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEMergeElement[JC] def attributes: NamedNodeMap SVGFEMergeElement[JC] def baseURI: String SVGFEMergeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeElement[JC] def childElementCount: Int @@ -20159,6 +20330,7 @@ SVGFEMergeElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGFEMergeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEMergeElement[JC] def hasAttributes(): Boolean SVGFEMergeElement[JC] def hasChildNodes(): Boolean SVGFEMergeElement[JC] def height: SVGAnimatedLength SVGFEMergeElement[JC] var id: String @@ -20248,6 +20420,7 @@ SVGFEMergeNodeElement[JC] def after(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def append(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def appendChild(newChild: Node): Node SVGFEMergeNodeElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEMergeNodeElement[JC] def attributes: NamedNodeMap SVGFEMergeNodeElement[JC] def baseURI: String SVGFEMergeNodeElement[JC] def before(nodes: Node | String*): Unit SVGFEMergeNodeElement[JC] def childElementCount: Int @@ -20276,6 +20449,7 @@ SVGFEMergeNodeElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFEMergeNodeElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMergeNodeElement[JC] def hasAttribute(name: String): Boolean SVGFEMergeNodeElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEMergeNodeElement[JC] def hasAttributes(): Boolean SVGFEMergeNodeElement[JC] def hasChildNodes(): Boolean SVGFEMergeNodeElement[JC] var id: String SVGFEMergeNodeElement[JC] def in1: SVGAnimatedString @@ -20360,6 +20534,7 @@ SVGFEMorphologyElement[JC] def after(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def append(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def appendChild(newChild: Node): Node SVGFEMorphologyElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEMorphologyElement[JC] def attributes: NamedNodeMap SVGFEMorphologyElement[JC] def baseURI: String SVGFEMorphologyElement[JC] def before(nodes: Node | String*): Unit SVGFEMorphologyElement[JC] def childElementCount: Int @@ -20389,6 +20564,7 @@ SVGFEMorphologyElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEMorphologyElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEMorphologyElement[JC] def hasAttribute(name: String): Boolean SVGFEMorphologyElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEMorphologyElement[JC] def hasAttributes(): Boolean SVGFEMorphologyElement[JC] def hasChildNodes(): Boolean SVGFEMorphologyElement[JC] def height: SVGAnimatedLength SVGFEMorphologyElement[JC] var id: String @@ -20485,6 +20661,7 @@ SVGFEOffsetElement[JC] def after(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def append(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def appendChild(newChild: Node): Node SVGFEOffsetElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEOffsetElement[JC] def attributes: NamedNodeMap SVGFEOffsetElement[JC] def baseURI: String SVGFEOffsetElement[JC] def before(nodes: Node | String*): Unit SVGFEOffsetElement[JC] def childElementCount: Int @@ -20516,6 +20693,7 @@ SVGFEOffsetElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGFEOffsetElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEOffsetElement[JC] def hasAttribute(name: String): Boolean SVGFEOffsetElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEOffsetElement[JC] def hasAttributes(): Boolean SVGFEOffsetElement[JC] def hasChildNodes(): Boolean SVGFEOffsetElement[JC] def height: SVGAnimatedLength SVGFEOffsetElement[JC] var id: String @@ -20606,6 +20784,7 @@ SVGFEPointLightElement[JC] def after(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def append(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def appendChild(newChild: Node): Node SVGFEPointLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFEPointLightElement[JC] def attributes: NamedNodeMap SVGFEPointLightElement[JC] def baseURI: String SVGFEPointLightElement[JC] def before(nodes: Node | String*): Unit SVGFEPointLightElement[JC] def childElementCount: Int @@ -20634,6 +20813,7 @@ SVGFEPointLightElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFEPointLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFEPointLightElement[JC] def hasAttribute(name: String): Boolean SVGFEPointLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFEPointLightElement[JC] def hasAttributes(): Boolean SVGFEPointLightElement[JC] def hasChildNodes(): Boolean SVGFEPointLightElement[JC] var id: String SVGFEPointLightElement[JC] var innerHTML: String @@ -20720,6 +20900,7 @@ SVGFESpecularLightingElement[JC] def after(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def append(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def appendChild(newChild: Node): Node SVGFESpecularLightingElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFESpecularLightingElement[JC] def attributes: NamedNodeMap SVGFESpecularLightingElement[JC] def baseURI: String SVGFESpecularLightingElement[JC] def before(nodes: Node | String*): Unit SVGFESpecularLightingElement[JC] def childElementCount: Int @@ -20749,6 +20930,7 @@ SVGFESpecularLightingElement[JC] def getElementsByTagName(name: String): HTMLCol SVGFESpecularLightingElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpecularLightingElement[JC] def hasAttribute(name: String): Boolean SVGFESpecularLightingElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFESpecularLightingElement[JC] def hasAttributes(): Boolean SVGFESpecularLightingElement[JC] def hasChildNodes(): Boolean SVGFESpecularLightingElement[JC] def height: SVGAnimatedLength SVGFESpecularLightingElement[JC] var id: String @@ -20844,6 +21026,7 @@ SVGFESpotLightElement[JC] def after(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def append(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def appendChild(newChild: Node): Node SVGFESpotLightElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFESpotLightElement[JC] def attributes: NamedNodeMap SVGFESpotLightElement[JC] def baseURI: String SVGFESpotLightElement[JC] def before(nodes: Node | String*): Unit SVGFESpotLightElement[JC] def childElementCount: Int @@ -20872,6 +21055,7 @@ SVGFESpotLightElement[JC] def getElementsByTagName(name: String): HTMLCollection SVGFESpotLightElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFESpotLightElement[JC] def hasAttribute(name: String): Boolean SVGFESpotLightElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFESpotLightElement[JC] def hasAttributes(): Boolean SVGFESpotLightElement[JC] def hasChildNodes(): Boolean SVGFESpotLightElement[JC] var id: String SVGFESpotLightElement[JC] var innerHTML: String @@ -20963,6 +21147,7 @@ SVGFETileElement[JC] def after(nodes: Node | String*): Unit SVGFETileElement[JC] def append(nodes: Node | String*): Unit SVGFETileElement[JC] def appendChild(newChild: Node): Node SVGFETileElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFETileElement[JC] def attributes: NamedNodeMap SVGFETileElement[JC] def baseURI: String SVGFETileElement[JC] def before(nodes: Node | String*): Unit SVGFETileElement[JC] def childElementCount: Int @@ -20992,6 +21177,7 @@ SVGFETileElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFETileElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETileElement[JC] def hasAttribute(name: String): Boolean SVGFETileElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFETileElement[JC] def hasAttributes(): Boolean SVGFETileElement[JC] def hasChildNodes(): Boolean SVGFETileElement[JC] def height: SVGAnimatedLength SVGFETileElement[JC] var id: String @@ -21082,6 +21268,7 @@ SVGFETurbulenceElement[JC] def after(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def append(nodes: Node | String*): Unit SVGFETurbulenceElement[JC] def appendChild(newChild: Node): Node SVGFETurbulenceElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFETurbulenceElement[JC] def attributes: NamedNodeMap SVGFETurbulenceElement[JC] def baseFrequencyX: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseFrequencyY: SVGAnimatedNumber SVGFETurbulenceElement[JC] def baseURI: String @@ -21113,6 +21300,7 @@ SVGFETurbulenceElement[JC] def getElementsByTagName(name: String): HTMLCollectio SVGFETurbulenceElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFETurbulenceElement[JC] def hasAttribute(name: String): Boolean SVGFETurbulenceElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFETurbulenceElement[JC] def hasAttributes(): Boolean SVGFETurbulenceElement[JC] def hasChildNodes(): Boolean SVGFETurbulenceElement[JC] def height: SVGAnimatedLength SVGFETurbulenceElement[JC] var id: String @@ -21215,6 +21403,7 @@ SVGFilterElement[JC] def after(nodes: Node | String*): Unit SVGFilterElement[JC] def append(nodes: Node | String*): Unit SVGFilterElement[JC] def appendChild(newChild: Node): Node SVGFilterElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGFilterElement[JC] def attributes: NamedNodeMap SVGFilterElement[JC] def baseURI: String SVGFilterElement[JC] def before(nodes: Node | String*): Unit SVGFilterElement[JC] def childElementCount: Int @@ -21248,6 +21437,7 @@ SVGFilterElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGFilterElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGFilterElement[JC] def hasAttribute(name: String): Boolean SVGFilterElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGFilterElement[JC] def hasAttributes(): Boolean SVGFilterElement[JC] def hasChildNodes(): Boolean SVGFilterElement[JC] def height: SVGAnimatedLength SVGFilterElement[JC] var href: SVGAnimatedString @@ -21350,6 +21540,7 @@ SVGGElement[JC] def after(nodes: Node | String*): Unit SVGGElement[JC] def append(nodes: Node | String*): Unit SVGGElement[JC] def appendChild(newChild: Node): Node SVGGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGGElement[JC] def attributes: NamedNodeMap SVGGElement[JC] def baseURI: String SVGGElement[JC] def before(nodes: Node | String*): Unit SVGGElement[JC] def childElementCount: Int @@ -21385,6 +21576,7 @@ SVGGElement[JC] def getScreenCTM(): SVGMatrix SVGGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGGElement[JC] def hasAttribute(name: String): Boolean SVGGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGGElement[JC] def hasAttributes(): Boolean SVGGElement[JC] def hasChildNodes(): Boolean SVGGElement[JC] def hasExtension(extension: String): Boolean SVGGElement[JC] var id: String @@ -21480,6 +21672,7 @@ SVGGradientElement[JC] def after(nodes: Node | String*): Unit SVGGradientElement[JC] def append(nodes: Node | String*): Unit SVGGradientElement[JC] def appendChild(newChild: Node): Node SVGGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGGradientElement[JC] def attributes: NamedNodeMap SVGGradientElement[JC] def baseURI: String SVGGradientElement[JC] def before(nodes: Node | String*): Unit SVGGradientElement[JC] def childElementCount: Int @@ -21512,6 +21705,7 @@ SVGGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGGradientElement[JC] def hasAttribute(name: String): Boolean SVGGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGGradientElement[JC] def hasAttributes(): Boolean SVGGradientElement[JC] def hasChildNodes(): Boolean SVGGradientElement[JC] var href: SVGAnimatedString SVGGradientElement[JC] var id: String @@ -21602,6 +21796,7 @@ SVGImageElement[JC] def after(nodes: Node | String*): Unit SVGImageElement[JC] def append(nodes: Node | String*): Unit SVGImageElement[JC] def appendChild(newChild: Node): Node SVGImageElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGImageElement[JC] def attributes: NamedNodeMap SVGImageElement[JC] def baseURI: String SVGImageElement[JC] def before(nodes: Node | String*): Unit SVGImageElement[JC] def childElementCount: Int @@ -21637,6 +21832,7 @@ SVGImageElement[JC] def getScreenCTM(): SVGMatrix SVGImageElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGImageElement[JC] def hasAttribute(name: String): Boolean SVGImageElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGImageElement[JC] def hasAttributes(): Boolean SVGImageElement[JC] def hasChildNodes(): Boolean SVGImageElement[JC] def hasExtension(extension: String): Boolean SVGImageElement[JC] def height: SVGAnimatedLength @@ -21762,6 +21958,7 @@ SVGLineElement[JC] def after(nodes: Node | String*): Unit SVGLineElement[JC] def append(nodes: Node | String*): Unit SVGLineElement[JC] def appendChild(newChild: Node): Node SVGLineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGLineElement[JC] def attributes: NamedNodeMap SVGLineElement[JC] def baseURI: String SVGLineElement[JC] def before(nodes: Node | String*): Unit SVGLineElement[JC] def childElementCount: Int @@ -21797,6 +21994,7 @@ SVGLineElement[JC] def getScreenCTM(): SVGMatrix SVGLineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGLineElement[JC] def hasAttribute(name: String): Boolean SVGLineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGLineElement[JC] def hasAttributes(): Boolean SVGLineElement[JC] def hasChildNodes(): Boolean SVGLineElement[JC] def hasExtension(extension: String): Boolean SVGLineElement[JC] var id: String @@ -21896,6 +22094,7 @@ SVGLinearGradientElement[JC] def after(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def append(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def appendChild(newChild: Node): Node SVGLinearGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGLinearGradientElement[JC] def attributes: NamedNodeMap SVGLinearGradientElement[JC] def baseURI: String SVGLinearGradientElement[JC] def before(nodes: Node | String*): Unit SVGLinearGradientElement[JC] def childElementCount: Int @@ -21928,6 +22127,7 @@ SVGLinearGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGLinearGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGLinearGradientElement[JC] def hasAttribute(name: String): Boolean SVGLinearGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGLinearGradientElement[JC] def hasAttributes(): Boolean SVGLinearGradientElement[JC] def hasChildNodes(): Boolean SVGLinearGradientElement[JC] var href: SVGAnimatedString SVGLinearGradientElement[JC] var id: String @@ -22024,6 +22224,7 @@ SVGMarkerElement[JC] def after(nodes: Node | String*): Unit SVGMarkerElement[JC] def append(nodes: Node | String*): Unit SVGMarkerElement[JC] def appendChild(newChild: Node): Node SVGMarkerElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGMarkerElement[JC] def attributes: NamedNodeMap SVGMarkerElement[JC] def baseURI: String SVGMarkerElement[JC] def before(nodes: Node | String*): Unit SVGMarkerElement[JC] def childElementCount: Int @@ -22054,6 +22255,7 @@ SVGMarkerElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGMarkerElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMarkerElement[JC] def hasAttribute(name: String): Boolean SVGMarkerElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGMarkerElement[JC] def hasAttributes(): Boolean SVGMarkerElement[JC] def hasChildNodes(): Boolean SVGMarkerElement[JC] var id: String SVGMarkerElement[JC] var innerHTML: String @@ -22160,6 +22362,7 @@ SVGMaskElement[JC] def after(nodes: Node | String*): Unit SVGMaskElement[JC] def append(nodes: Node | String*): Unit SVGMaskElement[JC] def appendChild(newChild: Node): Node SVGMaskElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGMaskElement[JC] def attributes: NamedNodeMap SVGMaskElement[JC] def baseURI: String SVGMaskElement[JC] def before(nodes: Node | String*): Unit SVGMaskElement[JC] def childElementCount: Int @@ -22190,6 +22393,7 @@ SVGMaskElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGMaskElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMaskElement[JC] def hasAttribute(name: String): Boolean SVGMaskElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGMaskElement[JC] def hasAttributes(): Boolean SVGMaskElement[JC] def hasChildNodes(): Boolean SVGMaskElement[JC] def hasExtension(extension: String): Boolean SVGMaskElement[JC] def height: SVGAnimatedLength @@ -22303,6 +22507,7 @@ SVGMetadataElement[JC] def after(nodes: Node | String*): Unit SVGMetadataElement[JC] def append(nodes: Node | String*): Unit SVGMetadataElement[JC] def appendChild(newChild: Node): Node SVGMetadataElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGMetadataElement[JC] def attributes: NamedNodeMap SVGMetadataElement[JC] def baseURI: String SVGMetadataElement[JC] def before(nodes: Node | String*): Unit SVGMetadataElement[JC] def childElementCount: Int @@ -22331,6 +22536,7 @@ SVGMetadataElement[JC] def getElementsByTagName(name: String): HTMLCollection[El SVGMetadataElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGMetadataElement[JC] def hasAttribute(name: String): Boolean SVGMetadataElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGMetadataElement[JC] def hasAttributes(): Boolean SVGMetadataElement[JC] def hasChildNodes(): Boolean SVGMetadataElement[JC] var id: String SVGMetadataElement[JC] var innerHTML: String @@ -22423,6 +22629,7 @@ SVGPathElement[JC] def after(nodes: Node | String*): Unit SVGPathElement[JC] def append(nodes: Node | String*): Unit SVGPathElement[JC] def appendChild(newChild: Node): Node SVGPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPathElement[JC] def attributes: NamedNodeMap SVGPathElement[JC] def baseURI: String SVGPathElement[JC] def before(nodes: Node | String*): Unit SVGPathElement[JC] def childElementCount: Int @@ -22480,6 +22687,7 @@ SVGPathElement[JC] def getTotalLength(): Double SVGPathElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPathElement[JC] def hasAttribute(name: String): Boolean SVGPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPathElement[JC] def hasAttributes(): Boolean SVGPathElement[JC] def hasChildNodes(): Boolean SVGPathElement[JC] def hasExtension(extension: String): Boolean SVGPathElement[JC] var id: String @@ -22702,6 +22910,7 @@ SVGPatternElement[JC] def after(nodes: Node | String*): Unit SVGPatternElement[JC] def append(nodes: Node | String*): Unit SVGPatternElement[JC] def appendChild(newChild: Node): Node SVGPatternElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPatternElement[JC] def attributes: NamedNodeMap SVGPatternElement[JC] def baseURI: String SVGPatternElement[JC] def before(nodes: Node | String*): Unit SVGPatternElement[JC] def childElementCount: Int @@ -22732,6 +22941,7 @@ SVGPatternElement[JC] def getElementsByTagName(name: String): HTMLCollection[Ele SVGPatternElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGPatternElement[JC] def hasAttribute(name: String): Boolean SVGPatternElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPatternElement[JC] def hasAttributes(): Boolean SVGPatternElement[JC] def hasChildNodes(): Boolean SVGPatternElement[JC] def hasExtension(extension: String): Boolean SVGPatternElement[JC] def height: SVGAnimatedLength @@ -22844,6 +23054,7 @@ SVGPolygonElement[JC] def animatedPoints: SVGPointList SVGPolygonElement[JC] def append(nodes: Node | String*): Unit SVGPolygonElement[JC] def appendChild(newChild: Node): Node SVGPolygonElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPolygonElement[JC] def attributes: NamedNodeMap SVGPolygonElement[JC] def baseURI: String SVGPolygonElement[JC] def before(nodes: Node | String*): Unit SVGPolygonElement[JC] def childElementCount: Int @@ -22879,6 +23090,7 @@ SVGPolygonElement[JC] def getScreenCTM(): SVGMatrix SVGPolygonElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolygonElement[JC] def hasAttribute(name: String): Boolean SVGPolygonElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPolygonElement[JC] def hasAttributes(): Boolean SVGPolygonElement[JC] def hasChildNodes(): Boolean SVGPolygonElement[JC] def hasExtension(extension: String): Boolean SVGPolygonElement[JC] var id: String @@ -22973,6 +23185,7 @@ SVGPolylineElement[JC] def animatedPoints: SVGPointList SVGPolylineElement[JC] def append(nodes: Node | String*): Unit SVGPolylineElement[JC] def appendChild(newChild: Node): Node SVGPolylineElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGPolylineElement[JC] def attributes: NamedNodeMap SVGPolylineElement[JC] def baseURI: String SVGPolylineElement[JC] def before(nodes: Node | String*): Unit SVGPolylineElement[JC] def childElementCount: Int @@ -23008,6 +23221,7 @@ SVGPolylineElement[JC] def getScreenCTM(): SVGMatrix SVGPolylineElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGPolylineElement[JC] def hasAttribute(name: String): Boolean SVGPolylineElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGPolylineElement[JC] def hasAttributes(): Boolean SVGPolylineElement[JC] def hasChildNodes(): Boolean SVGPolylineElement[JC] def hasExtension(extension: String): Boolean SVGPolylineElement[JC] var id: String @@ -23120,6 +23334,7 @@ SVGRadialGradientElement[JC] def after(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def append(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def appendChild(newChild: Node): Node SVGRadialGradientElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGRadialGradientElement[JC] def attributes: NamedNodeMap SVGRadialGradientElement[JC] def baseURI: String SVGRadialGradientElement[JC] def before(nodes: Node | String*): Unit SVGRadialGradientElement[JC] def childElementCount: Int @@ -23156,6 +23371,7 @@ SVGRadialGradientElement[JC] def gradientTransform: SVGAnimatedTransformList SVGRadialGradientElement[JC] def gradientUnits: SVGAnimatedEnumeration SVGRadialGradientElement[JC] def hasAttribute(name: String): Boolean SVGRadialGradientElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGRadialGradientElement[JC] def hasAttributes(): Boolean SVGRadialGradientElement[JC] def hasChildNodes(): Boolean SVGRadialGradientElement[JC] var href: SVGAnimatedString SVGRadialGradientElement[JC] var id: String @@ -23247,6 +23463,7 @@ SVGRectElement[JC] def after(nodes: Node | String*): Unit SVGRectElement[JC] def append(nodes: Node | String*): Unit SVGRectElement[JC] def appendChild(newChild: Node): Node SVGRectElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGRectElement[JC] def attributes: NamedNodeMap SVGRectElement[JC] def baseURI: String SVGRectElement[JC] def before(nodes: Node | String*): Unit SVGRectElement[JC] def childElementCount: Int @@ -23282,6 +23499,7 @@ SVGRectElement[JC] def getScreenCTM(): SVGMatrix SVGRectElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGRectElement[JC] def hasAttribute(name: String): Boolean SVGRectElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGRectElement[JC] def hasAttributes(): Boolean SVGRectElement[JC] def hasChildNodes(): Boolean SVGRectElement[JC] def hasExtension(extension: String): Boolean SVGRectElement[JC] def height: SVGAnimatedLength @@ -23380,6 +23598,7 @@ SVGSVGElement[JC] def after(nodes: Node | String*): Unit SVGSVGElement[JC] def append(nodes: Node | String*): Unit SVGSVGElement[JC] def appendChild(newChild: Node): Node SVGSVGElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGSVGElement[JC] def attributes: NamedNodeMap SVGSVGElement[JC] def baseURI: String SVGSVGElement[JC] def before(nodes: Node | String*): Unit SVGSVGElement[JC] def checkEnclosure(element: SVGElement, rect: SVGRect): Boolean @@ -23437,6 +23656,7 @@ SVGSVGElement[JC] def getScreenCTM(): SVGMatrix SVGSVGElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSVGElement[JC] def hasAttribute(name: String): Boolean SVGSVGElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGSVGElement[JC] def hasAttributes(): Boolean SVGSVGElement[JC] def hasChildNodes(): Boolean SVGSVGElement[JC] def hasExtension(extension: String): Boolean SVGSVGElement[JC] def height: SVGAnimatedLength @@ -23552,6 +23772,7 @@ SVGScriptElement[JC] def after(nodes: Node | String*): Unit SVGScriptElement[JC] def append(nodes: Node | String*): Unit SVGScriptElement[JC] def appendChild(newChild: Node): Node SVGScriptElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGScriptElement[JC] def attributes: NamedNodeMap SVGScriptElement[JC] def baseURI: String SVGScriptElement[JC] def before(nodes: Node | String*): Unit SVGScriptElement[JC] def childElementCount: Int @@ -23581,6 +23802,7 @@ SVGScriptElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGScriptElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGScriptElement[JC] def hasAttribute(name: String): Boolean SVGScriptElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGScriptElement[JC] def hasAttributes(): Boolean SVGScriptElement[JC] def hasChildNodes(): Boolean SVGScriptElement[JC] var href: SVGAnimatedString SVGScriptElement[JC] var id: String @@ -23666,6 +23888,7 @@ SVGStopElement[JC] def after(nodes: Node | String*): Unit SVGStopElement[JC] def append(nodes: Node | String*): Unit SVGStopElement[JC] def appendChild(newChild: Node): Node SVGStopElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGStopElement[JC] def attributes: NamedNodeMap SVGStopElement[JC] def baseURI: String SVGStopElement[JC] def before(nodes: Node | String*): Unit SVGStopElement[JC] def childElementCount: Int @@ -23695,6 +23918,7 @@ SVGStopElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGStopElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStopElement[JC] def hasAttribute(name: String): Boolean SVGStopElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGStopElement[JC] def hasAttributes(): Boolean SVGStopElement[JC] def hasChildNodes(): Boolean SVGStopElement[JC] var id: String SVGStopElement[JC] var innerHTML: String @@ -23790,6 +24014,7 @@ SVGStyleElement[JC] def after(nodes: Node | String*): Unit SVGStyleElement[JC] def append(nodes: Node | String*): Unit SVGStyleElement[JC] def appendChild(newChild: Node): Node SVGStyleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGStyleElement[JC] def attributes: NamedNodeMap SVGStyleElement[JC] def baseURI: String SVGStyleElement[JC] def before(nodes: Node | String*): Unit SVGStyleElement[JC] def childElementCount: Int @@ -23818,6 +24043,7 @@ SVGStyleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGStyleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGStyleElement[JC] def hasAttribute(name: String): Boolean SVGStyleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGStyleElement[JC] def hasAttributes(): Boolean SVGStyleElement[JC] def hasChildNodes(): Boolean SVGStyleElement[JC] var id: String SVGStyleElement[JC] var innerHTML: String @@ -23906,6 +24132,7 @@ SVGSwitchElement[JC] def after(nodes: Node | String*): Unit SVGSwitchElement[JC] def append(nodes: Node | String*): Unit SVGSwitchElement[JC] def appendChild(newChild: Node): Node SVGSwitchElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGSwitchElement[JC] def attributes: NamedNodeMap SVGSwitchElement[JC] def baseURI: String SVGSwitchElement[JC] def before(nodes: Node | String*): Unit SVGSwitchElement[JC] def childElementCount: Int @@ -23941,6 +24168,7 @@ SVGSwitchElement[JC] def getScreenCTM(): SVGMatrix SVGSwitchElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGSwitchElement[JC] def hasAttribute(name: String): Boolean SVGSwitchElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGSwitchElement[JC] def hasAttributes(): Boolean SVGSwitchElement[JC] def hasChildNodes(): Boolean SVGSwitchElement[JC] def hasExtension(extension: String): Boolean SVGSwitchElement[JC] var id: String @@ -24033,6 +24261,7 @@ SVGSymbolElement[JC] def after(nodes: Node | String*): Unit SVGSymbolElement[JC] def append(nodes: Node | String*): Unit SVGSymbolElement[JC] def appendChild(newChild: Node): Node SVGSymbolElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGSymbolElement[JC] def attributes: NamedNodeMap SVGSymbolElement[JC] def baseURI: String SVGSymbolElement[JC] def before(nodes: Node | String*): Unit SVGSymbolElement[JC] def childElementCount: Int @@ -24063,6 +24292,7 @@ SVGSymbolElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elem SVGSymbolElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGSymbolElement[JC] def hasAttribute(name: String): Boolean SVGSymbolElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGSymbolElement[JC] def hasAttributes(): Boolean SVGSymbolElement[JC] def hasChildNodes(): Boolean SVGSymbolElement[JC] var id: String SVGSymbolElement[JC] var innerHTML: String @@ -24151,6 +24381,7 @@ SVGTSpanElement[JC] def after(nodes: Node | String*): Unit SVGTSpanElement[JC] def append(nodes: Node | String*): Unit SVGTSpanElement[JC] def appendChild(newChild: Node): Node SVGTSpanElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTSpanElement[JC] def attributes: NamedNodeMap SVGTSpanElement[JC] def baseURI: String SVGTSpanElement[JC] def before(nodes: Node | String*): Unit SVGTSpanElement[JC] def childElementCount: Int @@ -24191,6 +24422,7 @@ SVGTSpanElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTSpanElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTSpanElement[JC] def hasAttribute(name: String): Boolean SVGTSpanElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTSpanElement[JC] def hasAttributes(): Boolean SVGTSpanElement[JC] def hasChildNodes(): Boolean SVGTSpanElement[JC] def hasExtension(extension: String): Boolean SVGTSpanElement[JC] var id: String @@ -24291,6 +24523,7 @@ SVGTextContentElement[JC] def after(nodes: Node | String*): Unit SVGTextContentElement[JC] def append(nodes: Node | String*): Unit SVGTextContentElement[JC] def appendChild(newChild: Node): Node SVGTextContentElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextContentElement[JC] def attributes: NamedNodeMap SVGTextContentElement[JC] def baseURI: String SVGTextContentElement[JC] def before(nodes: Node | String*): Unit SVGTextContentElement[JC] def childElementCount: Int @@ -24329,6 +24562,7 @@ SVGTextContentElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextContentElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextContentElement[JC] def hasAttribute(name: String): Boolean SVGTextContentElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextContentElement[JC] def hasAttributes(): Boolean SVGTextContentElement[JC] def hasChildNodes(): Boolean SVGTextContentElement[JC] def hasExtension(extension: String): Boolean SVGTextContentElement[JC] var id: String @@ -24425,6 +24659,7 @@ SVGTextElement[JC] def after(nodes: Node | String*): Unit SVGTextElement[JC] def append(nodes: Node | String*): Unit SVGTextElement[JC] def appendChild(newChild: Node): Node SVGTextElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextElement[JC] def attributes: NamedNodeMap SVGTextElement[JC] def baseURI: String SVGTextElement[JC] def before(nodes: Node | String*): Unit SVGTextElement[JC] def childElementCount: Int @@ -24470,6 +24705,7 @@ SVGTextElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGTextElement[JC] def hasAttribute(name: String): Boolean SVGTextElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextElement[JC] def hasAttributes(): Boolean SVGTextElement[JC] def hasChildNodes(): Boolean SVGTextElement[JC] def hasExtension(extension: String): Boolean SVGTextElement[JC] var id: String @@ -24568,6 +24804,7 @@ SVGTextPathElement[JC] def after(nodes: Node | String*): Unit SVGTextPathElement[JC] def append(nodes: Node | String*): Unit SVGTextPathElement[JC] def appendChild(newChild: Node): Node SVGTextPathElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextPathElement[JC] def attributes: NamedNodeMap SVGTextPathElement[JC] def baseURI: String SVGTextPathElement[JC] def before(nodes: Node | String*): Unit SVGTextPathElement[JC] def childElementCount: Int @@ -24606,6 +24843,7 @@ SVGTextPathElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPathElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPathElement[JC] def hasAttribute(name: String): Boolean SVGTextPathElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextPathElement[JC] def hasAttributes(): Boolean SVGTextPathElement[JC] def hasChildNodes(): Boolean SVGTextPathElement[JC] def hasExtension(extension: String): Boolean SVGTextPathElement[JC] var href: SVGAnimatedString @@ -24709,6 +24947,7 @@ SVGTextPositioningElement[JC] def after(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def append(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def appendChild(newChild: Node): Node SVGTextPositioningElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTextPositioningElement[JC] def attributes: NamedNodeMap SVGTextPositioningElement[JC] def baseURI: String SVGTextPositioningElement[JC] def before(nodes: Node | String*): Unit SVGTextPositioningElement[JC] def childElementCount: Int @@ -24749,6 +24988,7 @@ SVGTextPositioningElement[JC] def getStartPositionOfChar(charnum: Int): SVGPoint SVGTextPositioningElement[JC] def getSubStringLength(charnum: Int, nchars: Int): Double SVGTextPositioningElement[JC] def hasAttribute(name: String): Boolean SVGTextPositioningElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTextPositioningElement[JC] def hasAttributes(): Boolean SVGTextPositioningElement[JC] def hasChildNodes(): Boolean SVGTextPositioningElement[JC] def hasExtension(extension: String): Boolean SVGTextPositioningElement[JC] var id: String @@ -24845,6 +25085,7 @@ SVGTitleElement[JC] def after(nodes: Node | String*): Unit SVGTitleElement[JC] def append(nodes: Node | String*): Unit SVGTitleElement[JC] def appendChild(newChild: Node): Node SVGTitleElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGTitleElement[JC] def attributes: NamedNodeMap SVGTitleElement[JC] def baseURI: String SVGTitleElement[JC] def before(nodes: Node | String*): Unit SVGTitleElement[JC] def childElementCount: Int @@ -24874,6 +25115,7 @@ SVGTitleElement[JC] def getElementsByTagName(name: String): HTMLCollection[Eleme SVGTitleElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGTitleElement[JC] def hasAttribute(name: String): Boolean SVGTitleElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGTitleElement[JC] def hasAttributes(): Boolean SVGTitleElement[JC] def hasChildNodes(): Boolean SVGTitleElement[JC] var id: String SVGTitleElement[JC] var innerHTML: String @@ -25001,6 +25243,7 @@ SVGUseElement[JC] def animatedInstanceRoot: SVGElementInstance SVGUseElement[JC] def append(nodes: Node | String*): Unit SVGUseElement[JC] def appendChild(newChild: Node): Node SVGUseElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGUseElement[JC] def attributes: NamedNodeMap SVGUseElement[JC] def baseURI: String SVGUseElement[JC] def before(nodes: Node | String*): Unit SVGUseElement[JC] def childElementCount: Int @@ -25036,6 +25279,7 @@ SVGUseElement[JC] def getScreenCTM(): SVGMatrix SVGUseElement[JC] def getTransformToElement(element: SVGElement): SVGMatrix SVGUseElement[JC] def hasAttribute(name: String): Boolean SVGUseElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGUseElement[JC] def hasAttributes(): Boolean SVGUseElement[JC] def hasChildNodes(): Boolean SVGUseElement[JC] def hasExtension(extension: String): Boolean SVGUseElement[JC] def height: SVGAnimatedLength @@ -25134,6 +25378,7 @@ SVGViewElement[JC] def after(nodes: Node | String*): Unit SVGViewElement[JC] def append(nodes: Node | String*): Unit SVGViewElement[JC] def appendChild(newChild: Node): Node SVGViewElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot +SVGViewElement[JC] def attributes: NamedNodeMap SVGViewElement[JC] def baseURI: String SVGViewElement[JC] def before(nodes: Node | String*): Unit SVGViewElement[JC] def childElementCount: Int @@ -25163,6 +25408,7 @@ SVGViewElement[JC] def getElementsByTagName(name: String): HTMLCollection[Elemen SVGViewElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element] SVGViewElement[JC] def hasAttribute(name: String): Boolean SVGViewElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean +SVGViewElement[JC] def hasAttributes(): Boolean SVGViewElement[JC] def hasChildNodes(): Boolean SVGViewElement[JC] var id: String SVGViewElement[JC] var innerHTML: String diff --git a/dom/src/main/scala/org/scalajs/dom/Element.scala b/dom/src/main/scala/org/scalajs/dom/Element.scala index 65c09ff9f..f34d12447 100644 --- a/dom/src/main/scala/org/scalajs/dom/Element.scala +++ b/dom/src/main/scala/org/scalajs/dom/Element.scala @@ -157,8 +157,18 @@ abstract class Element extends Node with NodeSelector with ParentNode with NonDo */ def matches(selector: String): Boolean = js.native + /** The Element.attributes property returns a live collection of all attribute nodes registered to the specified node. + * It is a NamedNodeMap, not an Array, so it has no Array methods and the Attr nodes' indexes may differ among + * browsers. To be more specific, attributes is a key/value pair of strings that represents any information regarding + * that attribute. + */ + def attributes: NamedNodeMap = js.native + + /** Returns a boolean value of true or false, indicating if the current element has any attributes or not. */ + def hasAttributes(): Boolean = js.native + /** getAttribute() returns the value of the named attribute on the specified element. If the named attribute does not - * exist, the value returned will either be null or "" (the empty string); see Notes for details. + * exist, the value returned will either be null or "" (the empty string). */ def getAttribute(name: String): String = js.native From 2b18ea73876bab1de614cca638b83f3fabc86db6 Mon Sep 17 00:00:00 2001 From: Christoph Bunte Date: Thu, 11 May 2023 18:00:36 +0200 Subject: [PATCH 13/14] add focus options for html element --- api-reports/2_12.txt | 63 +++++++++++++++++++ api-reports/2_13.txt | 63 +++++++++++++++++++ .../scala/org/scalajs/dom/FocusOptions.scala | 8 +++ .../scala/org/scalajs/dom/HTMLElement.scala | 1 + 4 files changed, 135 insertions(+) create mode 100644 dom/src/main/scala/org/scalajs/dom/FocusOptions.scala diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index ef6921cc6..40b541d13 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -230,6 +230,7 @@ Audio[JC] var filters: Object Audio[JC] def firstChild: Node Audio[JC] def firstElementChild: Element Audio[JC] def focus(): Unit +Audio[JC] def focus(options: FocusOptions): Unit Audio[JC] def getAttribute(name: String): String Audio[JC] def getAttributeNS(namespaceURI: String, localName: String): String Audio[JC] def getAttributeNode(name: String): Attr @@ -2283,6 +2284,8 @@ FocusEventInit[JT] var detail: js.UndefOr[Int] FocusEventInit[JT] var relatedTarget: js.UndefOr[EventTarget] FocusEventInit[JT] var scoped: js.UndefOr[Boolean] FocusEventInit[JT] var view: js.UndefOr[Window] +FocusOptions[ST] var focusVisible: js.UndefOr[Boolean] +FocusOptions[ST] var preventScroll: js.UndefOr[Boolean] FormData[JC] def append(name: js.Any, value: js.Any, blobName: String?): Unit FormData[JO] FrameType[JT] @@ -2382,6 +2385,7 @@ HTMLAnchorElement[JC] var filters: Object HTMLAnchorElement[JC] def firstChild: Node HTMLAnchorElement[JC] def firstElementChild: Element HTMLAnchorElement[JC] def focus(): Unit +HTMLAnchorElement[JC] def focus(options: FocusOptions): Unit HTMLAnchorElement[JC] def getAttribute(name: String): String HTMLAnchorElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLAnchorElement[JC] def getAttributeNode(name: String): Attr @@ -2599,6 +2603,7 @@ HTMLAreaElement[JC] var filters: Object HTMLAreaElement[JC] def firstChild: Node HTMLAreaElement[JC] def firstElementChild: Element HTMLAreaElement[JC] def focus(): Unit +HTMLAreaElement[JC] def focus(options: FocusOptions): Unit HTMLAreaElement[JC] def getAttribute(name: String): String HTMLAreaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLAreaElement[JC] def getAttributeNode(name: String): Attr @@ -2821,6 +2826,7 @@ HTMLAudioElement[JC] var filters: Object HTMLAudioElement[JC] def firstChild: Node HTMLAudioElement[JC] def firstElementChild: Element HTMLAudioElement[JC] def focus(): Unit +HTMLAudioElement[JC] def focus(options: FocusOptions): Unit HTMLAudioElement[JC] def getAttribute(name: String): String HTMLAudioElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLAudioElement[JC] def getAttributeNode(name: String): Attr @@ -3039,6 +3045,7 @@ HTMLBRElement[JC] var filters: Object HTMLBRElement[JC] def firstChild: Node HTMLBRElement[JC] def firstElementChild: Element HTMLBRElement[JC] def focus(): Unit +HTMLBRElement[JC] def focus(options: FocusOptions): Unit HTMLBRElement[JC] def getAttribute(name: String): String HTMLBRElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLBRElement[JC] def getAttributeNode(name: String): Attr @@ -3240,6 +3247,7 @@ HTMLBaseElement[JC] var filters: Object HTMLBaseElement[JC] def firstChild: Node HTMLBaseElement[JC] def firstElementChild: Element HTMLBaseElement[JC] def focus(): Unit +HTMLBaseElement[JC] def focus(options: FocusOptions): Unit HTMLBaseElement[JC] def getAttribute(name: String): String HTMLBaseElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLBaseElement[JC] def getAttributeNode(name: String): Attr @@ -3443,6 +3451,7 @@ HTMLBodyElement[JC] var filters: Object HTMLBodyElement[JC] def firstChild: Node HTMLBodyElement[JC] def firstElementChild: Element HTMLBodyElement[JC] def focus(): Unit +HTMLBodyElement[JC] def focus(options: FocusOptions): Unit HTMLBodyElement[JC] def getAttribute(name: String): String HTMLBodyElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLBodyElement[JC] def getAttributeNode(name: String): Attr @@ -3661,6 +3670,7 @@ HTMLButtonElement[JC] var filters: Object HTMLButtonElement[JC] def firstChild: Node HTMLButtonElement[JC] def firstElementChild: Element HTMLButtonElement[JC] def focus(): Unit +HTMLButtonElement[JC] def focus(options: FocusOptions): Unit HTMLButtonElement[JC] def form: HTMLFormElement HTMLButtonElement[JC] var formAction: String HTMLButtonElement[JC] var formEnctype: String @@ -3877,6 +3887,7 @@ HTMLCanvasElement[JC] var filters: Object HTMLCanvasElement[JC] def firstChild: Node HTMLCanvasElement[JC] def firstElementChild: Element HTMLCanvasElement[JC] def focus(): Unit +HTMLCanvasElement[JC] def focus(options: FocusOptions): Unit HTMLCanvasElement[JC] def getAttribute(name: String): String HTMLCanvasElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLCanvasElement[JC] def getAttributeNode(name: String): Attr @@ -4086,6 +4097,7 @@ HTMLDListElement[JC] var filters: Object HTMLDListElement[JC] def firstChild: Node HTMLDListElement[JC] def firstElementChild: Element HTMLDListElement[JC] def focus(): Unit +HTMLDListElement[JC] def focus(options: FocusOptions): Unit HTMLDListElement[JC] def getAttribute(name: String): String HTMLDListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDListElement[JC] def getAttributeNode(name: String): Attr @@ -4287,6 +4299,7 @@ HTMLDataListElement[JC] var filters: Object HTMLDataListElement[JC] def firstChild: Node HTMLDataListElement[JC] def firstElementChild: Element HTMLDataListElement[JC] def focus(): Unit +HTMLDataListElement[JC] def focus(options: FocusOptions): Unit HTMLDataListElement[JC] def getAttribute(name: String): String HTMLDataListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDataListElement[JC] def getAttributeNode(name: String): Attr @@ -4490,6 +4503,7 @@ HTMLDialogElement[JC] var filters: Object HTMLDialogElement[JC] def firstChild: Node HTMLDialogElement[JC] def firstElementChild: Element HTMLDialogElement[JC] def focus(): Unit +HTMLDialogElement[JC] def focus(options: FocusOptions): Unit HTMLDialogElement[JC] def getAttribute(name: String): String HTMLDialogElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDialogElement[JC] def getAttributeNode(name: String): Attr @@ -4695,6 +4709,7 @@ HTMLDivElement[JC] var filters: Object HTMLDivElement[JC] def firstChild: Node HTMLDivElement[JC] def firstElementChild: Element HTMLDivElement[JC] def focus(): Unit +HTMLDivElement[JC] def focus(options: FocusOptions): Unit HTMLDivElement[JC] def getAttribute(name: String): String HTMLDivElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDivElement[JC] def getAttributeNode(name: String): Attr @@ -5094,6 +5109,7 @@ HTMLElement[JC] var filters: Object HTMLElement[JC] def firstChild: Node HTMLElement[JC] def firstElementChild: Element HTMLElement[JC] def focus(): Unit +HTMLElement[JC] def focus(options: FocusOptions): Unit HTMLElement[JC] def getAttribute(name: String): String HTMLElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLElement[JC] def getAttributeNode(name: String): Attr @@ -5295,6 +5311,7 @@ HTMLEmbedElement[JC] var filters: Object HTMLEmbedElement[JC] def firstChild: Node HTMLEmbedElement[JC] def firstElementChild: Element HTMLEmbedElement[JC] def focus(): Unit +HTMLEmbedElement[JC] def focus(options: FocusOptions): Unit HTMLEmbedElement[JC] def getAttribute(name: String): String HTMLEmbedElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLEmbedElement[JC] def getAttributeNode(name: String): Attr @@ -5502,6 +5519,7 @@ HTMLFieldSetElement[JC] var filters: Object HTMLFieldSetElement[JC] def firstChild: Node HTMLFieldSetElement[JC] def firstElementChild: Element HTMLFieldSetElement[JC] def focus(): Unit +HTMLFieldSetElement[JC] def focus(options: FocusOptions): Unit HTMLFieldSetElement[JC] def form: HTMLFormElement HTMLFieldSetElement[JC] def getAttribute(name: String): String HTMLFieldSetElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -5721,6 +5739,7 @@ HTMLFormElement[JC] var filters: Object HTMLFormElement[JC] def firstChild: Node HTMLFormElement[JC] def firstElementChild: Element HTMLFormElement[JC] def focus(): Unit +HTMLFormElement[JC] def focus(options: FocusOptions): Unit HTMLFormElement[JC] def getAttribute(name: String): String HTMLFormElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLFormElement[JC] def getAttributeNode(name: String): Attr @@ -5933,6 +5952,7 @@ HTMLHRElement[JC] var filters: Object HTMLHRElement[JC] def firstChild: Node HTMLHRElement[JC] def firstElementChild: Element HTMLHRElement[JC] def focus(): Unit +HTMLHRElement[JC] def focus(options: FocusOptions): Unit HTMLHRElement[JC] def getAttribute(name: String): String HTMLHRElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHRElement[JC] def getAttributeNode(name: String): Attr @@ -6134,6 +6154,7 @@ HTMLHeadElement[JC] var filters: Object HTMLHeadElement[JC] def firstChild: Node HTMLHeadElement[JC] def firstElementChild: Element HTMLHeadElement[JC] def focus(): Unit +HTMLHeadElement[JC] def focus(options: FocusOptions): Unit HTMLHeadElement[JC] def getAttribute(name: String): String HTMLHeadElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHeadElement[JC] def getAttributeNode(name: String): Attr @@ -6335,6 +6356,7 @@ HTMLHeadingElement[JC] var filters: Object HTMLHeadingElement[JC] def firstChild: Node HTMLHeadingElement[JC] def firstElementChild: Element HTMLHeadingElement[JC] def focus(): Unit +HTMLHeadingElement[JC] def focus(options: FocusOptions): Unit HTMLHeadingElement[JC] def getAttribute(name: String): String HTMLHeadingElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHeadingElement[JC] def getAttributeNode(name: String): Attr @@ -6536,6 +6558,7 @@ HTMLHtmlElement[JC] var filters: Object HTMLHtmlElement[JC] def firstChild: Node HTMLHtmlElement[JC] def firstElementChild: Element HTMLHtmlElement[JC] def focus(): Unit +HTMLHtmlElement[JC] def focus(options: FocusOptions): Unit HTMLHtmlElement[JC] def getAttribute(name: String): String HTMLHtmlElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHtmlElement[JC] def getAttributeNode(name: String): Attr @@ -6740,6 +6763,7 @@ HTMLIFrameElement[JC] var filters: Object HTMLIFrameElement[JC] def firstChild: Node HTMLIFrameElement[JC] def firstElementChild: Element HTMLIFrameElement[JC] def focus(): Unit +HTMLIFrameElement[JC] def focus(options: FocusOptions): Unit HTMLIFrameElement[JC] def getAttribute(name: String): String HTMLIFrameElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLIFrameElement[JC] def getAttributeNode(name: String): Attr @@ -6952,6 +6976,7 @@ HTMLImageElement[JC] var filters: Object HTMLImageElement[JC] def firstChild: Node HTMLImageElement[JC] def firstElementChild: Element HTMLImageElement[JC] def focus(): Unit +HTMLImageElement[JC] def focus(options: FocusOptions): Unit HTMLImageElement[JC] def getAttribute(name: String): String HTMLImageElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLImageElement[JC] def getAttributeNode(name: String): Attr @@ -7177,6 +7202,7 @@ HTMLInputElement[JC] var filters: Object HTMLInputElement[JC] def firstChild: Node HTMLInputElement[JC] def firstElementChild: Element HTMLInputElement[JC] def focus(): Unit +HTMLInputElement[JC] def focus(options: FocusOptions): Unit HTMLInputElement[JC] def form: HTMLFormElement HTMLInputElement[JC] var formAction: String HTMLInputElement[JC] var formEnctype: String @@ -7415,6 +7441,7 @@ HTMLLIElement[JC] var filters: Object HTMLLIElement[JC] def firstChild: Node HTMLLIElement[JC] def firstElementChild: Element HTMLLIElement[JC] def focus(): Unit +HTMLLIElement[JC] def focus(options: FocusOptions): Unit HTMLLIElement[JC] def getAttribute(name: String): String HTMLLIElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLLIElement[JC] def getAttributeNode(name: String): Attr @@ -7617,6 +7644,7 @@ HTMLLabelElement[JC] var filters: Object HTMLLabelElement[JC] def firstChild: Node HTMLLabelElement[JC] def firstElementChild: Element HTMLLabelElement[JC] def focus(): Unit +HTMLLabelElement[JC] def focus(options: FocusOptions): Unit HTMLLabelElement[JC] def form: HTMLFormElement HTMLLabelElement[JC] def getAttribute(name: String): String HTMLLabelElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -7821,6 +7849,7 @@ HTMLLegendElement[JC] var filters: Object HTMLLegendElement[JC] def firstChild: Node HTMLLegendElement[JC] def firstElementChild: Element HTMLLegendElement[JC] def focus(): Unit +HTMLLegendElement[JC] def focus(options: FocusOptions): Unit HTMLLegendElement[JC] def form: HTMLFormElement HTMLLegendElement[JC] def getAttribute(name: String): String HTMLLegendElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -8023,6 +8052,7 @@ HTMLLinkElement[JC] var filters: Object HTMLLinkElement[JC] def firstChild: Node HTMLLinkElement[JC] def firstElementChild: Element HTMLLinkElement[JC] def focus(): Unit +HTMLLinkElement[JC] def focus(options: FocusOptions): Unit HTMLLinkElement[JC] def getAttribute(name: String): String HTMLLinkElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLLinkElement[JC] def getAttributeNode(name: String): Attr @@ -8232,6 +8262,7 @@ HTMLMapElement[JC] var filters: Object HTMLMapElement[JC] def firstChild: Node HTMLMapElement[JC] def firstElementChild: Element HTMLMapElement[JC] def focus(): Unit +HTMLMapElement[JC] def focus(options: FocusOptions): Unit HTMLMapElement[JC] def getAttribute(name: String): String HTMLMapElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMapElement[JC] def getAttributeNode(name: String): Attr @@ -8445,6 +8476,7 @@ HTMLMediaElement[JC] var filters: Object HTMLMediaElement[JC] def firstChild: Node HTMLMediaElement[JC] def firstElementChild: Element HTMLMediaElement[JC] def focus(): Unit +HTMLMediaElement[JC] def focus(options: FocusOptions): Unit HTMLMediaElement[JC] def getAttribute(name: String): String HTMLMediaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMediaElement[JC] def getAttributeNode(name: String): Attr @@ -8672,6 +8704,7 @@ HTMLMenuElement[JC] var filters: Object HTMLMenuElement[JC] def firstChild: Node HTMLMenuElement[JC] def firstElementChild: Element HTMLMenuElement[JC] def focus(): Unit +HTMLMenuElement[JC] def focus(options: FocusOptions): Unit HTMLMenuElement[JC] def getAttribute(name: String): String HTMLMenuElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMenuElement[JC] def getAttributeNode(name: String): Attr @@ -8876,6 +8909,7 @@ HTMLMetaElement[JC] var filters: Object HTMLMetaElement[JC] def firstChild: Node HTMLMetaElement[JC] def firstElementChild: Element HTMLMetaElement[JC] def focus(): Unit +HTMLMetaElement[JC] def focus(options: FocusOptions): Unit HTMLMetaElement[JC] def getAttribute(name: String): String HTMLMetaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMetaElement[JC] def getAttributeNode(name: String): Attr @@ -9082,6 +9116,7 @@ HTMLModElement[JC] var filters: Object HTMLModElement[JC] def firstChild: Node HTMLModElement[JC] def firstElementChild: Element HTMLModElement[JC] def focus(): Unit +HTMLModElement[JC] def focus(options: FocusOptions): Unit HTMLModElement[JC] def getAttribute(name: String): String HTMLModElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLModElement[JC] def getAttributeNode(name: String): Attr @@ -9283,6 +9318,7 @@ HTMLOListElement[JC] var filters: Object HTMLOListElement[JC] def firstChild: Node HTMLOListElement[JC] def firstElementChild: Element HTMLOListElement[JC] def focus(): Unit +HTMLOListElement[JC] def focus(options: FocusOptions): Unit HTMLOListElement[JC] def getAttribute(name: String): String HTMLOListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLOListElement[JC] def getAttributeNode(name: String): Attr @@ -9492,6 +9528,7 @@ HTMLObjectElement[JC] var filters: Object HTMLObjectElement[JC] def firstChild: Node HTMLObjectElement[JC] def firstElementChild: Element HTMLObjectElement[JC] def focus(): Unit +HTMLObjectElement[JC] def focus(options: FocusOptions): Unit HTMLObjectElement[JC] def form: HTMLFormElement HTMLObjectElement[JC] def getAttribute(name: String): String HTMLObjectElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -9707,6 +9744,7 @@ HTMLOptGroupElement[JC] var filters: Object HTMLOptGroupElement[JC] def firstChild: Node HTMLOptGroupElement[JC] def firstElementChild: Element HTMLOptGroupElement[JC] def focus(): Unit +HTMLOptGroupElement[JC] def focus(options: FocusOptions): Unit HTMLOptGroupElement[JC] def getAttribute(name: String): String HTMLOptGroupElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLOptGroupElement[JC] def getAttributeNode(name: String): Attr @@ -9912,6 +9950,7 @@ HTMLOptionElement[JC] var filters: Object HTMLOptionElement[JC] def firstChild: Node HTMLOptionElement[JC] def firstElementChild: Element HTMLOptionElement[JC] def focus(): Unit +HTMLOptionElement[JC] def focus(options: FocusOptions): Unit HTMLOptionElement[JC] def form: HTMLFormElement HTMLOptionElement[JC] def getAttribute(name: String): String HTMLOptionElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -10123,6 +10162,7 @@ HTMLParagraphElement[JC] var filters: Object HTMLParagraphElement[JC] def firstChild: Node HTMLParagraphElement[JC] def firstElementChild: Element HTMLParagraphElement[JC] def focus(): Unit +HTMLParagraphElement[JC] def focus(options: FocusOptions): Unit HTMLParagraphElement[JC] def getAttribute(name: String): String HTMLParagraphElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLParagraphElement[JC] def getAttributeNode(name: String): Attr @@ -10324,6 +10364,7 @@ HTMLParamElement[JC] var filters: Object HTMLParamElement[JC] def firstChild: Node HTMLParamElement[JC] def firstElementChild: Element HTMLParamElement[JC] def focus(): Unit +HTMLParamElement[JC] def focus(options: FocusOptions): Unit HTMLParamElement[JC] def getAttribute(name: String): String HTMLParamElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLParamElement[JC] def getAttributeNode(name: String): Attr @@ -10527,6 +10568,7 @@ HTMLPreElement[JC] var filters: Object HTMLPreElement[JC] def firstChild: Node HTMLPreElement[JC] def firstElementChild: Element HTMLPreElement[JC] def focus(): Unit +HTMLPreElement[JC] def focus(options: FocusOptions): Unit HTMLPreElement[JC] def getAttribute(name: String): String HTMLPreElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLPreElement[JC] def getAttributeNode(name: String): Attr @@ -10728,6 +10770,7 @@ HTMLProgressElement[JC] var filters: Object HTMLProgressElement[JC] def firstChild: Node HTMLProgressElement[JC] def firstElementChild: Element HTMLProgressElement[JC] def focus(): Unit +HTMLProgressElement[JC] def focus(options: FocusOptions): Unit HTMLProgressElement[JC] var form: HTMLFormElement HTMLProgressElement[JC] def getAttribute(name: String): String HTMLProgressElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -10935,6 +10978,7 @@ HTMLQuoteElement[JC] var filters: Object HTMLQuoteElement[JC] def firstChild: Node HTMLQuoteElement[JC] def firstElementChild: Element HTMLQuoteElement[JC] def focus(): Unit +HTMLQuoteElement[JC] def focus(options: FocusOptions): Unit HTMLQuoteElement[JC] def getAttribute(name: String): String HTMLQuoteElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLQuoteElement[JC] def getAttributeNode(name: String): Attr @@ -11140,6 +11184,7 @@ HTMLScriptElement[JC] var filters: Object HTMLScriptElement[JC] def firstChild: Node HTMLScriptElement[JC] def firstElementChild: Element HTMLScriptElement[JC] def focus(): Unit +HTMLScriptElement[JC] def focus(options: FocusOptions): Unit HTMLScriptElement[JC] def getAttribute(name: String): String HTMLScriptElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLScriptElement[JC] def getAttributeNode(name: String): Attr @@ -11350,6 +11395,7 @@ HTMLSelectElement[JC] var filters: Object HTMLSelectElement[JC] def firstChild: Node HTMLSelectElement[JC] def firstElementChild: Element HTMLSelectElement[JC] def focus(): Unit +HTMLSelectElement[JC] def focus(options: FocusOptions): Unit HTMLSelectElement[JC] def form: HTMLFormElement HTMLSelectElement[JC] def getAttribute(name: String): String HTMLSelectElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -11570,6 +11616,7 @@ HTMLSourceElement[JC] var filters: Object HTMLSourceElement[JC] def firstChild: Node HTMLSourceElement[JC] def firstElementChild: Element HTMLSourceElement[JC] def focus(): Unit +HTMLSourceElement[JC] def focus(options: FocusOptions): Unit HTMLSourceElement[JC] def getAttribute(name: String): String HTMLSourceElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLSourceElement[JC] def getAttributeNode(name: String): Attr @@ -11774,6 +11821,7 @@ HTMLSpanElement[JC] var filters: Object HTMLSpanElement[JC] def firstChild: Node HTMLSpanElement[JC] def firstElementChild: Element HTMLSpanElement[JC] def focus(): Unit +HTMLSpanElement[JC] def focus(options: FocusOptions): Unit HTMLSpanElement[JC] def getAttribute(name: String): String HTMLSpanElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLSpanElement[JC] def getAttributeNode(name: String): Attr @@ -11975,6 +12023,7 @@ HTMLStyleElement[JC] var filters: Object HTMLStyleElement[JC] def firstChild: Node HTMLStyleElement[JC] def firstElementChild: Element HTMLStyleElement[JC] def focus(): Unit +HTMLStyleElement[JC] def focus(options: FocusOptions): Unit HTMLStyleElement[JC] def getAttribute(name: String): String HTMLStyleElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLStyleElement[JC] def getAttributeNode(name: String): Attr @@ -12180,6 +12229,7 @@ HTMLTableCaptionElement[JC] var filters: Object HTMLTableCaptionElement[JC] def firstChild: Node HTMLTableCaptionElement[JC] def firstElementChild: Element HTMLTableCaptionElement[JC] def focus(): Unit +HTMLTableCaptionElement[JC] def focus(options: FocusOptions): Unit HTMLTableCaptionElement[JC] def getAttribute(name: String): String HTMLTableCaptionElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableCaptionElement[JC] def getAttributeNode(name: String): Attr @@ -12383,6 +12433,7 @@ HTMLTableCellElement[JC] var filters: Object HTMLTableCellElement[JC] def firstChild: Node HTMLTableCellElement[JC] def firstElementChild: Element HTMLTableCellElement[JC] def focus(): Unit +HTMLTableCellElement[JC] def focus(options: FocusOptions): Unit HTMLTableCellElement[JC] def getAttribute(name: String): String HTMLTableCellElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableCellElement[JC] def getAttributeNode(name: String): Attr @@ -12586,6 +12637,7 @@ HTMLTableColElement[JC] var filters: Object HTMLTableColElement[JC] def firstChild: Node HTMLTableColElement[JC] def firstElementChild: Element HTMLTableColElement[JC] def focus(): Unit +HTMLTableColElement[JC] def focus(options: FocusOptions): Unit HTMLTableColElement[JC] def getAttribute(name: String): String HTMLTableColElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableColElement[JC] def getAttributeNode(name: String): Attr @@ -12797,6 +12849,7 @@ HTMLTableElement[JC] var filters: Object HTMLTableElement[JC] def firstChild: Node HTMLTableElement[JC] def firstElementChild: Element HTMLTableElement[JC] def focus(): Unit +HTMLTableElement[JC] def focus(options: FocusOptions): Unit HTMLTableElement[JC] def getAttribute(name: String): String HTMLTableElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableElement[JC] def getAttributeNode(name: String): Attr @@ -13009,6 +13062,7 @@ HTMLTableRowElement[JC] var filters: Object HTMLTableRowElement[JC] def firstChild: Node HTMLTableRowElement[JC] def firstElementChild: Element HTMLTableRowElement[JC] def focus(): Unit +HTMLTableRowElement[JC] def focus(options: FocusOptions): Unit HTMLTableRowElement[JC] def getAttribute(name: String): String HTMLTableRowElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableRowElement[JC] def getAttributeNode(name: String): Attr @@ -13215,6 +13269,7 @@ HTMLTableSectionElement[JC] var filters: Object HTMLTableSectionElement[JC] def firstChild: Node HTMLTableSectionElement[JC] def firstElementChild: Element HTMLTableSectionElement[JC] def focus(): Unit +HTMLTableSectionElement[JC] def focus(options: FocusOptions): Unit HTMLTableSectionElement[JC] def getAttribute(name: String): String HTMLTableSectionElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableSectionElement[JC] def getAttributeNode(name: String): Attr @@ -13420,6 +13475,7 @@ HTMLTemplateElement[JC] var filters: Object HTMLTemplateElement[JC] def firstChild: Node HTMLTemplateElement[JC] def firstElementChild: Element HTMLTemplateElement[JC] def focus(): Unit +HTMLTemplateElement[JC] def focus(options: FocusOptions): Unit HTMLTemplateElement[JC] def getAttribute(name: String): String HTMLTemplateElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTemplateElement[JC] def getAttributeNode(name: String): Attr @@ -13626,6 +13682,7 @@ HTMLTextAreaElement[JC] var filters: Object HTMLTextAreaElement[JC] def firstChild: Node HTMLTextAreaElement[JC] def firstElementChild: Element HTMLTextAreaElement[JC] def focus(): Unit +HTMLTextAreaElement[JC] def focus(options: FocusOptions): Unit HTMLTextAreaElement[JC] def form: HTMLFormElement HTMLTextAreaElement[JC] def getAttribute(name: String): String HTMLTextAreaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -13847,6 +13904,7 @@ HTMLTitleElement[JC] var filters: Object HTMLTitleElement[JC] def firstChild: Node HTMLTitleElement[JC] def firstElementChild: Element HTMLTitleElement[JC] def focus(): Unit +HTMLTitleElement[JC] def focus(options: FocusOptions): Unit HTMLTitleElement[JC] def getAttribute(name: String): String HTMLTitleElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTitleElement[JC] def getAttributeNode(name: String): Attr @@ -14049,6 +14107,7 @@ HTMLTrackElement[JC] var filters: Object HTMLTrackElement[JC] def firstChild: Node HTMLTrackElement[JC] def firstElementChild: Element HTMLTrackElement[JC] def focus(): Unit +HTMLTrackElement[JC] def focus(options: FocusOptions): Unit HTMLTrackElement[JC] def getAttribute(name: String): String HTMLTrackElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTrackElement[JC] def getAttributeNode(name: String): Attr @@ -14255,6 +14314,7 @@ HTMLUListElement[JC] var filters: Object HTMLUListElement[JC] def firstChild: Node HTMLUListElement[JC] def firstElementChild: Element HTMLUListElement[JC] def focus(): Unit +HTMLUListElement[JC] def focus(options: FocusOptions): Unit HTMLUListElement[JC] def getAttribute(name: String): String HTMLUListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLUListElement[JC] def getAttributeNode(name: String): Attr @@ -14456,6 +14516,7 @@ HTMLUnknownElement[JC] var filters: Object HTMLUnknownElement[JC] def firstChild: Node HTMLUnknownElement[JC] def firstElementChild: Element HTMLUnknownElement[JC] def focus(): Unit +HTMLUnknownElement[JC] def focus(options: FocusOptions): Unit HTMLUnknownElement[JC] def getAttribute(name: String): String HTMLUnknownElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLUnknownElement[JC] def getAttributeNode(name: String): Attr @@ -14668,6 +14729,7 @@ HTMLVideoElement[JC] var filters: Object HTMLVideoElement[JC] def firstChild: Node HTMLVideoElement[JC] def firstElementChild: Element HTMLVideoElement[JC] def focus(): Unit +HTMLVideoElement[JC] def focus(options: FocusOptions): Unit HTMLVideoElement[JC] def getAttribute(name: String): String HTMLVideoElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLVideoElement[JC] def getAttributeNode(name: String): Attr @@ -15173,6 +15235,7 @@ Image[JC] var filters: Object Image[JC] def firstChild: Node Image[JC] def firstElementChild: Element Image[JC] def focus(): Unit +Image[JC] def focus(options: FocusOptions): Unit Image[JC] def getAttribute(name: String): String Image[JC] def getAttributeNS(namespaceURI: String, localName: String): String Image[JC] def getAttributeNode(name: String): Attr diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index ef6921cc6..40b541d13 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -230,6 +230,7 @@ Audio[JC] var filters: Object Audio[JC] def firstChild: Node Audio[JC] def firstElementChild: Element Audio[JC] def focus(): Unit +Audio[JC] def focus(options: FocusOptions): Unit Audio[JC] def getAttribute(name: String): String Audio[JC] def getAttributeNS(namespaceURI: String, localName: String): String Audio[JC] def getAttributeNode(name: String): Attr @@ -2283,6 +2284,8 @@ FocusEventInit[JT] var detail: js.UndefOr[Int] FocusEventInit[JT] var relatedTarget: js.UndefOr[EventTarget] FocusEventInit[JT] var scoped: js.UndefOr[Boolean] FocusEventInit[JT] var view: js.UndefOr[Window] +FocusOptions[ST] var focusVisible: js.UndefOr[Boolean] +FocusOptions[ST] var preventScroll: js.UndefOr[Boolean] FormData[JC] def append(name: js.Any, value: js.Any, blobName: String?): Unit FormData[JO] FrameType[JT] @@ -2382,6 +2385,7 @@ HTMLAnchorElement[JC] var filters: Object HTMLAnchorElement[JC] def firstChild: Node HTMLAnchorElement[JC] def firstElementChild: Element HTMLAnchorElement[JC] def focus(): Unit +HTMLAnchorElement[JC] def focus(options: FocusOptions): Unit HTMLAnchorElement[JC] def getAttribute(name: String): String HTMLAnchorElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLAnchorElement[JC] def getAttributeNode(name: String): Attr @@ -2599,6 +2603,7 @@ HTMLAreaElement[JC] var filters: Object HTMLAreaElement[JC] def firstChild: Node HTMLAreaElement[JC] def firstElementChild: Element HTMLAreaElement[JC] def focus(): Unit +HTMLAreaElement[JC] def focus(options: FocusOptions): Unit HTMLAreaElement[JC] def getAttribute(name: String): String HTMLAreaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLAreaElement[JC] def getAttributeNode(name: String): Attr @@ -2821,6 +2826,7 @@ HTMLAudioElement[JC] var filters: Object HTMLAudioElement[JC] def firstChild: Node HTMLAudioElement[JC] def firstElementChild: Element HTMLAudioElement[JC] def focus(): Unit +HTMLAudioElement[JC] def focus(options: FocusOptions): Unit HTMLAudioElement[JC] def getAttribute(name: String): String HTMLAudioElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLAudioElement[JC] def getAttributeNode(name: String): Attr @@ -3039,6 +3045,7 @@ HTMLBRElement[JC] var filters: Object HTMLBRElement[JC] def firstChild: Node HTMLBRElement[JC] def firstElementChild: Element HTMLBRElement[JC] def focus(): Unit +HTMLBRElement[JC] def focus(options: FocusOptions): Unit HTMLBRElement[JC] def getAttribute(name: String): String HTMLBRElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLBRElement[JC] def getAttributeNode(name: String): Attr @@ -3240,6 +3247,7 @@ HTMLBaseElement[JC] var filters: Object HTMLBaseElement[JC] def firstChild: Node HTMLBaseElement[JC] def firstElementChild: Element HTMLBaseElement[JC] def focus(): Unit +HTMLBaseElement[JC] def focus(options: FocusOptions): Unit HTMLBaseElement[JC] def getAttribute(name: String): String HTMLBaseElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLBaseElement[JC] def getAttributeNode(name: String): Attr @@ -3443,6 +3451,7 @@ HTMLBodyElement[JC] var filters: Object HTMLBodyElement[JC] def firstChild: Node HTMLBodyElement[JC] def firstElementChild: Element HTMLBodyElement[JC] def focus(): Unit +HTMLBodyElement[JC] def focus(options: FocusOptions): Unit HTMLBodyElement[JC] def getAttribute(name: String): String HTMLBodyElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLBodyElement[JC] def getAttributeNode(name: String): Attr @@ -3661,6 +3670,7 @@ HTMLButtonElement[JC] var filters: Object HTMLButtonElement[JC] def firstChild: Node HTMLButtonElement[JC] def firstElementChild: Element HTMLButtonElement[JC] def focus(): Unit +HTMLButtonElement[JC] def focus(options: FocusOptions): Unit HTMLButtonElement[JC] def form: HTMLFormElement HTMLButtonElement[JC] var formAction: String HTMLButtonElement[JC] var formEnctype: String @@ -3877,6 +3887,7 @@ HTMLCanvasElement[JC] var filters: Object HTMLCanvasElement[JC] def firstChild: Node HTMLCanvasElement[JC] def firstElementChild: Element HTMLCanvasElement[JC] def focus(): Unit +HTMLCanvasElement[JC] def focus(options: FocusOptions): Unit HTMLCanvasElement[JC] def getAttribute(name: String): String HTMLCanvasElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLCanvasElement[JC] def getAttributeNode(name: String): Attr @@ -4086,6 +4097,7 @@ HTMLDListElement[JC] var filters: Object HTMLDListElement[JC] def firstChild: Node HTMLDListElement[JC] def firstElementChild: Element HTMLDListElement[JC] def focus(): Unit +HTMLDListElement[JC] def focus(options: FocusOptions): Unit HTMLDListElement[JC] def getAttribute(name: String): String HTMLDListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDListElement[JC] def getAttributeNode(name: String): Attr @@ -4287,6 +4299,7 @@ HTMLDataListElement[JC] var filters: Object HTMLDataListElement[JC] def firstChild: Node HTMLDataListElement[JC] def firstElementChild: Element HTMLDataListElement[JC] def focus(): Unit +HTMLDataListElement[JC] def focus(options: FocusOptions): Unit HTMLDataListElement[JC] def getAttribute(name: String): String HTMLDataListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDataListElement[JC] def getAttributeNode(name: String): Attr @@ -4490,6 +4503,7 @@ HTMLDialogElement[JC] var filters: Object HTMLDialogElement[JC] def firstChild: Node HTMLDialogElement[JC] def firstElementChild: Element HTMLDialogElement[JC] def focus(): Unit +HTMLDialogElement[JC] def focus(options: FocusOptions): Unit HTMLDialogElement[JC] def getAttribute(name: String): String HTMLDialogElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDialogElement[JC] def getAttributeNode(name: String): Attr @@ -4695,6 +4709,7 @@ HTMLDivElement[JC] var filters: Object HTMLDivElement[JC] def firstChild: Node HTMLDivElement[JC] def firstElementChild: Element HTMLDivElement[JC] def focus(): Unit +HTMLDivElement[JC] def focus(options: FocusOptions): Unit HTMLDivElement[JC] def getAttribute(name: String): String HTMLDivElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLDivElement[JC] def getAttributeNode(name: String): Attr @@ -5094,6 +5109,7 @@ HTMLElement[JC] var filters: Object HTMLElement[JC] def firstChild: Node HTMLElement[JC] def firstElementChild: Element HTMLElement[JC] def focus(): Unit +HTMLElement[JC] def focus(options: FocusOptions): Unit HTMLElement[JC] def getAttribute(name: String): String HTMLElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLElement[JC] def getAttributeNode(name: String): Attr @@ -5295,6 +5311,7 @@ HTMLEmbedElement[JC] var filters: Object HTMLEmbedElement[JC] def firstChild: Node HTMLEmbedElement[JC] def firstElementChild: Element HTMLEmbedElement[JC] def focus(): Unit +HTMLEmbedElement[JC] def focus(options: FocusOptions): Unit HTMLEmbedElement[JC] def getAttribute(name: String): String HTMLEmbedElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLEmbedElement[JC] def getAttributeNode(name: String): Attr @@ -5502,6 +5519,7 @@ HTMLFieldSetElement[JC] var filters: Object HTMLFieldSetElement[JC] def firstChild: Node HTMLFieldSetElement[JC] def firstElementChild: Element HTMLFieldSetElement[JC] def focus(): Unit +HTMLFieldSetElement[JC] def focus(options: FocusOptions): Unit HTMLFieldSetElement[JC] def form: HTMLFormElement HTMLFieldSetElement[JC] def getAttribute(name: String): String HTMLFieldSetElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -5721,6 +5739,7 @@ HTMLFormElement[JC] var filters: Object HTMLFormElement[JC] def firstChild: Node HTMLFormElement[JC] def firstElementChild: Element HTMLFormElement[JC] def focus(): Unit +HTMLFormElement[JC] def focus(options: FocusOptions): Unit HTMLFormElement[JC] def getAttribute(name: String): String HTMLFormElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLFormElement[JC] def getAttributeNode(name: String): Attr @@ -5933,6 +5952,7 @@ HTMLHRElement[JC] var filters: Object HTMLHRElement[JC] def firstChild: Node HTMLHRElement[JC] def firstElementChild: Element HTMLHRElement[JC] def focus(): Unit +HTMLHRElement[JC] def focus(options: FocusOptions): Unit HTMLHRElement[JC] def getAttribute(name: String): String HTMLHRElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHRElement[JC] def getAttributeNode(name: String): Attr @@ -6134,6 +6154,7 @@ HTMLHeadElement[JC] var filters: Object HTMLHeadElement[JC] def firstChild: Node HTMLHeadElement[JC] def firstElementChild: Element HTMLHeadElement[JC] def focus(): Unit +HTMLHeadElement[JC] def focus(options: FocusOptions): Unit HTMLHeadElement[JC] def getAttribute(name: String): String HTMLHeadElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHeadElement[JC] def getAttributeNode(name: String): Attr @@ -6335,6 +6356,7 @@ HTMLHeadingElement[JC] var filters: Object HTMLHeadingElement[JC] def firstChild: Node HTMLHeadingElement[JC] def firstElementChild: Element HTMLHeadingElement[JC] def focus(): Unit +HTMLHeadingElement[JC] def focus(options: FocusOptions): Unit HTMLHeadingElement[JC] def getAttribute(name: String): String HTMLHeadingElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHeadingElement[JC] def getAttributeNode(name: String): Attr @@ -6536,6 +6558,7 @@ HTMLHtmlElement[JC] var filters: Object HTMLHtmlElement[JC] def firstChild: Node HTMLHtmlElement[JC] def firstElementChild: Element HTMLHtmlElement[JC] def focus(): Unit +HTMLHtmlElement[JC] def focus(options: FocusOptions): Unit HTMLHtmlElement[JC] def getAttribute(name: String): String HTMLHtmlElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLHtmlElement[JC] def getAttributeNode(name: String): Attr @@ -6740,6 +6763,7 @@ HTMLIFrameElement[JC] var filters: Object HTMLIFrameElement[JC] def firstChild: Node HTMLIFrameElement[JC] def firstElementChild: Element HTMLIFrameElement[JC] def focus(): Unit +HTMLIFrameElement[JC] def focus(options: FocusOptions): Unit HTMLIFrameElement[JC] def getAttribute(name: String): String HTMLIFrameElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLIFrameElement[JC] def getAttributeNode(name: String): Attr @@ -6952,6 +6976,7 @@ HTMLImageElement[JC] var filters: Object HTMLImageElement[JC] def firstChild: Node HTMLImageElement[JC] def firstElementChild: Element HTMLImageElement[JC] def focus(): Unit +HTMLImageElement[JC] def focus(options: FocusOptions): Unit HTMLImageElement[JC] def getAttribute(name: String): String HTMLImageElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLImageElement[JC] def getAttributeNode(name: String): Attr @@ -7177,6 +7202,7 @@ HTMLInputElement[JC] var filters: Object HTMLInputElement[JC] def firstChild: Node HTMLInputElement[JC] def firstElementChild: Element HTMLInputElement[JC] def focus(): Unit +HTMLInputElement[JC] def focus(options: FocusOptions): Unit HTMLInputElement[JC] def form: HTMLFormElement HTMLInputElement[JC] var formAction: String HTMLInputElement[JC] var formEnctype: String @@ -7415,6 +7441,7 @@ HTMLLIElement[JC] var filters: Object HTMLLIElement[JC] def firstChild: Node HTMLLIElement[JC] def firstElementChild: Element HTMLLIElement[JC] def focus(): Unit +HTMLLIElement[JC] def focus(options: FocusOptions): Unit HTMLLIElement[JC] def getAttribute(name: String): String HTMLLIElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLLIElement[JC] def getAttributeNode(name: String): Attr @@ -7617,6 +7644,7 @@ HTMLLabelElement[JC] var filters: Object HTMLLabelElement[JC] def firstChild: Node HTMLLabelElement[JC] def firstElementChild: Element HTMLLabelElement[JC] def focus(): Unit +HTMLLabelElement[JC] def focus(options: FocusOptions): Unit HTMLLabelElement[JC] def form: HTMLFormElement HTMLLabelElement[JC] def getAttribute(name: String): String HTMLLabelElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -7821,6 +7849,7 @@ HTMLLegendElement[JC] var filters: Object HTMLLegendElement[JC] def firstChild: Node HTMLLegendElement[JC] def firstElementChild: Element HTMLLegendElement[JC] def focus(): Unit +HTMLLegendElement[JC] def focus(options: FocusOptions): Unit HTMLLegendElement[JC] def form: HTMLFormElement HTMLLegendElement[JC] def getAttribute(name: String): String HTMLLegendElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -8023,6 +8052,7 @@ HTMLLinkElement[JC] var filters: Object HTMLLinkElement[JC] def firstChild: Node HTMLLinkElement[JC] def firstElementChild: Element HTMLLinkElement[JC] def focus(): Unit +HTMLLinkElement[JC] def focus(options: FocusOptions): Unit HTMLLinkElement[JC] def getAttribute(name: String): String HTMLLinkElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLLinkElement[JC] def getAttributeNode(name: String): Attr @@ -8232,6 +8262,7 @@ HTMLMapElement[JC] var filters: Object HTMLMapElement[JC] def firstChild: Node HTMLMapElement[JC] def firstElementChild: Element HTMLMapElement[JC] def focus(): Unit +HTMLMapElement[JC] def focus(options: FocusOptions): Unit HTMLMapElement[JC] def getAttribute(name: String): String HTMLMapElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMapElement[JC] def getAttributeNode(name: String): Attr @@ -8445,6 +8476,7 @@ HTMLMediaElement[JC] var filters: Object HTMLMediaElement[JC] def firstChild: Node HTMLMediaElement[JC] def firstElementChild: Element HTMLMediaElement[JC] def focus(): Unit +HTMLMediaElement[JC] def focus(options: FocusOptions): Unit HTMLMediaElement[JC] def getAttribute(name: String): String HTMLMediaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMediaElement[JC] def getAttributeNode(name: String): Attr @@ -8672,6 +8704,7 @@ HTMLMenuElement[JC] var filters: Object HTMLMenuElement[JC] def firstChild: Node HTMLMenuElement[JC] def firstElementChild: Element HTMLMenuElement[JC] def focus(): Unit +HTMLMenuElement[JC] def focus(options: FocusOptions): Unit HTMLMenuElement[JC] def getAttribute(name: String): String HTMLMenuElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMenuElement[JC] def getAttributeNode(name: String): Attr @@ -8876,6 +8909,7 @@ HTMLMetaElement[JC] var filters: Object HTMLMetaElement[JC] def firstChild: Node HTMLMetaElement[JC] def firstElementChild: Element HTMLMetaElement[JC] def focus(): Unit +HTMLMetaElement[JC] def focus(options: FocusOptions): Unit HTMLMetaElement[JC] def getAttribute(name: String): String HTMLMetaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLMetaElement[JC] def getAttributeNode(name: String): Attr @@ -9082,6 +9116,7 @@ HTMLModElement[JC] var filters: Object HTMLModElement[JC] def firstChild: Node HTMLModElement[JC] def firstElementChild: Element HTMLModElement[JC] def focus(): Unit +HTMLModElement[JC] def focus(options: FocusOptions): Unit HTMLModElement[JC] def getAttribute(name: String): String HTMLModElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLModElement[JC] def getAttributeNode(name: String): Attr @@ -9283,6 +9318,7 @@ HTMLOListElement[JC] var filters: Object HTMLOListElement[JC] def firstChild: Node HTMLOListElement[JC] def firstElementChild: Element HTMLOListElement[JC] def focus(): Unit +HTMLOListElement[JC] def focus(options: FocusOptions): Unit HTMLOListElement[JC] def getAttribute(name: String): String HTMLOListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLOListElement[JC] def getAttributeNode(name: String): Attr @@ -9492,6 +9528,7 @@ HTMLObjectElement[JC] var filters: Object HTMLObjectElement[JC] def firstChild: Node HTMLObjectElement[JC] def firstElementChild: Element HTMLObjectElement[JC] def focus(): Unit +HTMLObjectElement[JC] def focus(options: FocusOptions): Unit HTMLObjectElement[JC] def form: HTMLFormElement HTMLObjectElement[JC] def getAttribute(name: String): String HTMLObjectElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -9707,6 +9744,7 @@ HTMLOptGroupElement[JC] var filters: Object HTMLOptGroupElement[JC] def firstChild: Node HTMLOptGroupElement[JC] def firstElementChild: Element HTMLOptGroupElement[JC] def focus(): Unit +HTMLOptGroupElement[JC] def focus(options: FocusOptions): Unit HTMLOptGroupElement[JC] def getAttribute(name: String): String HTMLOptGroupElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLOptGroupElement[JC] def getAttributeNode(name: String): Attr @@ -9912,6 +9950,7 @@ HTMLOptionElement[JC] var filters: Object HTMLOptionElement[JC] def firstChild: Node HTMLOptionElement[JC] def firstElementChild: Element HTMLOptionElement[JC] def focus(): Unit +HTMLOptionElement[JC] def focus(options: FocusOptions): Unit HTMLOptionElement[JC] def form: HTMLFormElement HTMLOptionElement[JC] def getAttribute(name: String): String HTMLOptionElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -10123,6 +10162,7 @@ HTMLParagraphElement[JC] var filters: Object HTMLParagraphElement[JC] def firstChild: Node HTMLParagraphElement[JC] def firstElementChild: Element HTMLParagraphElement[JC] def focus(): Unit +HTMLParagraphElement[JC] def focus(options: FocusOptions): Unit HTMLParagraphElement[JC] def getAttribute(name: String): String HTMLParagraphElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLParagraphElement[JC] def getAttributeNode(name: String): Attr @@ -10324,6 +10364,7 @@ HTMLParamElement[JC] var filters: Object HTMLParamElement[JC] def firstChild: Node HTMLParamElement[JC] def firstElementChild: Element HTMLParamElement[JC] def focus(): Unit +HTMLParamElement[JC] def focus(options: FocusOptions): Unit HTMLParamElement[JC] def getAttribute(name: String): String HTMLParamElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLParamElement[JC] def getAttributeNode(name: String): Attr @@ -10527,6 +10568,7 @@ HTMLPreElement[JC] var filters: Object HTMLPreElement[JC] def firstChild: Node HTMLPreElement[JC] def firstElementChild: Element HTMLPreElement[JC] def focus(): Unit +HTMLPreElement[JC] def focus(options: FocusOptions): Unit HTMLPreElement[JC] def getAttribute(name: String): String HTMLPreElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLPreElement[JC] def getAttributeNode(name: String): Attr @@ -10728,6 +10770,7 @@ HTMLProgressElement[JC] var filters: Object HTMLProgressElement[JC] def firstChild: Node HTMLProgressElement[JC] def firstElementChild: Element HTMLProgressElement[JC] def focus(): Unit +HTMLProgressElement[JC] def focus(options: FocusOptions): Unit HTMLProgressElement[JC] var form: HTMLFormElement HTMLProgressElement[JC] def getAttribute(name: String): String HTMLProgressElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -10935,6 +10978,7 @@ HTMLQuoteElement[JC] var filters: Object HTMLQuoteElement[JC] def firstChild: Node HTMLQuoteElement[JC] def firstElementChild: Element HTMLQuoteElement[JC] def focus(): Unit +HTMLQuoteElement[JC] def focus(options: FocusOptions): Unit HTMLQuoteElement[JC] def getAttribute(name: String): String HTMLQuoteElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLQuoteElement[JC] def getAttributeNode(name: String): Attr @@ -11140,6 +11184,7 @@ HTMLScriptElement[JC] var filters: Object HTMLScriptElement[JC] def firstChild: Node HTMLScriptElement[JC] def firstElementChild: Element HTMLScriptElement[JC] def focus(): Unit +HTMLScriptElement[JC] def focus(options: FocusOptions): Unit HTMLScriptElement[JC] def getAttribute(name: String): String HTMLScriptElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLScriptElement[JC] def getAttributeNode(name: String): Attr @@ -11350,6 +11395,7 @@ HTMLSelectElement[JC] var filters: Object HTMLSelectElement[JC] def firstChild: Node HTMLSelectElement[JC] def firstElementChild: Element HTMLSelectElement[JC] def focus(): Unit +HTMLSelectElement[JC] def focus(options: FocusOptions): Unit HTMLSelectElement[JC] def form: HTMLFormElement HTMLSelectElement[JC] def getAttribute(name: String): String HTMLSelectElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -11570,6 +11616,7 @@ HTMLSourceElement[JC] var filters: Object HTMLSourceElement[JC] def firstChild: Node HTMLSourceElement[JC] def firstElementChild: Element HTMLSourceElement[JC] def focus(): Unit +HTMLSourceElement[JC] def focus(options: FocusOptions): Unit HTMLSourceElement[JC] def getAttribute(name: String): String HTMLSourceElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLSourceElement[JC] def getAttributeNode(name: String): Attr @@ -11774,6 +11821,7 @@ HTMLSpanElement[JC] var filters: Object HTMLSpanElement[JC] def firstChild: Node HTMLSpanElement[JC] def firstElementChild: Element HTMLSpanElement[JC] def focus(): Unit +HTMLSpanElement[JC] def focus(options: FocusOptions): Unit HTMLSpanElement[JC] def getAttribute(name: String): String HTMLSpanElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLSpanElement[JC] def getAttributeNode(name: String): Attr @@ -11975,6 +12023,7 @@ HTMLStyleElement[JC] var filters: Object HTMLStyleElement[JC] def firstChild: Node HTMLStyleElement[JC] def firstElementChild: Element HTMLStyleElement[JC] def focus(): Unit +HTMLStyleElement[JC] def focus(options: FocusOptions): Unit HTMLStyleElement[JC] def getAttribute(name: String): String HTMLStyleElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLStyleElement[JC] def getAttributeNode(name: String): Attr @@ -12180,6 +12229,7 @@ HTMLTableCaptionElement[JC] var filters: Object HTMLTableCaptionElement[JC] def firstChild: Node HTMLTableCaptionElement[JC] def firstElementChild: Element HTMLTableCaptionElement[JC] def focus(): Unit +HTMLTableCaptionElement[JC] def focus(options: FocusOptions): Unit HTMLTableCaptionElement[JC] def getAttribute(name: String): String HTMLTableCaptionElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableCaptionElement[JC] def getAttributeNode(name: String): Attr @@ -12383,6 +12433,7 @@ HTMLTableCellElement[JC] var filters: Object HTMLTableCellElement[JC] def firstChild: Node HTMLTableCellElement[JC] def firstElementChild: Element HTMLTableCellElement[JC] def focus(): Unit +HTMLTableCellElement[JC] def focus(options: FocusOptions): Unit HTMLTableCellElement[JC] def getAttribute(name: String): String HTMLTableCellElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableCellElement[JC] def getAttributeNode(name: String): Attr @@ -12586,6 +12637,7 @@ HTMLTableColElement[JC] var filters: Object HTMLTableColElement[JC] def firstChild: Node HTMLTableColElement[JC] def firstElementChild: Element HTMLTableColElement[JC] def focus(): Unit +HTMLTableColElement[JC] def focus(options: FocusOptions): Unit HTMLTableColElement[JC] def getAttribute(name: String): String HTMLTableColElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableColElement[JC] def getAttributeNode(name: String): Attr @@ -12797,6 +12849,7 @@ HTMLTableElement[JC] var filters: Object HTMLTableElement[JC] def firstChild: Node HTMLTableElement[JC] def firstElementChild: Element HTMLTableElement[JC] def focus(): Unit +HTMLTableElement[JC] def focus(options: FocusOptions): Unit HTMLTableElement[JC] def getAttribute(name: String): String HTMLTableElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableElement[JC] def getAttributeNode(name: String): Attr @@ -13009,6 +13062,7 @@ HTMLTableRowElement[JC] var filters: Object HTMLTableRowElement[JC] def firstChild: Node HTMLTableRowElement[JC] def firstElementChild: Element HTMLTableRowElement[JC] def focus(): Unit +HTMLTableRowElement[JC] def focus(options: FocusOptions): Unit HTMLTableRowElement[JC] def getAttribute(name: String): String HTMLTableRowElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableRowElement[JC] def getAttributeNode(name: String): Attr @@ -13215,6 +13269,7 @@ HTMLTableSectionElement[JC] var filters: Object HTMLTableSectionElement[JC] def firstChild: Node HTMLTableSectionElement[JC] def firstElementChild: Element HTMLTableSectionElement[JC] def focus(): Unit +HTMLTableSectionElement[JC] def focus(options: FocusOptions): Unit HTMLTableSectionElement[JC] def getAttribute(name: String): String HTMLTableSectionElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTableSectionElement[JC] def getAttributeNode(name: String): Attr @@ -13420,6 +13475,7 @@ HTMLTemplateElement[JC] var filters: Object HTMLTemplateElement[JC] def firstChild: Node HTMLTemplateElement[JC] def firstElementChild: Element HTMLTemplateElement[JC] def focus(): Unit +HTMLTemplateElement[JC] def focus(options: FocusOptions): Unit HTMLTemplateElement[JC] def getAttribute(name: String): String HTMLTemplateElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTemplateElement[JC] def getAttributeNode(name: String): Attr @@ -13626,6 +13682,7 @@ HTMLTextAreaElement[JC] var filters: Object HTMLTextAreaElement[JC] def firstChild: Node HTMLTextAreaElement[JC] def firstElementChild: Element HTMLTextAreaElement[JC] def focus(): Unit +HTMLTextAreaElement[JC] def focus(options: FocusOptions): Unit HTMLTextAreaElement[JC] def form: HTMLFormElement HTMLTextAreaElement[JC] def getAttribute(name: String): String HTMLTextAreaElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String @@ -13847,6 +13904,7 @@ HTMLTitleElement[JC] var filters: Object HTMLTitleElement[JC] def firstChild: Node HTMLTitleElement[JC] def firstElementChild: Element HTMLTitleElement[JC] def focus(): Unit +HTMLTitleElement[JC] def focus(options: FocusOptions): Unit HTMLTitleElement[JC] def getAttribute(name: String): String HTMLTitleElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTitleElement[JC] def getAttributeNode(name: String): Attr @@ -14049,6 +14107,7 @@ HTMLTrackElement[JC] var filters: Object HTMLTrackElement[JC] def firstChild: Node HTMLTrackElement[JC] def firstElementChild: Element HTMLTrackElement[JC] def focus(): Unit +HTMLTrackElement[JC] def focus(options: FocusOptions): Unit HTMLTrackElement[JC] def getAttribute(name: String): String HTMLTrackElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLTrackElement[JC] def getAttributeNode(name: String): Attr @@ -14255,6 +14314,7 @@ HTMLUListElement[JC] var filters: Object HTMLUListElement[JC] def firstChild: Node HTMLUListElement[JC] def firstElementChild: Element HTMLUListElement[JC] def focus(): Unit +HTMLUListElement[JC] def focus(options: FocusOptions): Unit HTMLUListElement[JC] def getAttribute(name: String): String HTMLUListElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLUListElement[JC] def getAttributeNode(name: String): Attr @@ -14456,6 +14516,7 @@ HTMLUnknownElement[JC] var filters: Object HTMLUnknownElement[JC] def firstChild: Node HTMLUnknownElement[JC] def firstElementChild: Element HTMLUnknownElement[JC] def focus(): Unit +HTMLUnknownElement[JC] def focus(options: FocusOptions): Unit HTMLUnknownElement[JC] def getAttribute(name: String): String HTMLUnknownElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLUnknownElement[JC] def getAttributeNode(name: String): Attr @@ -14668,6 +14729,7 @@ HTMLVideoElement[JC] var filters: Object HTMLVideoElement[JC] def firstChild: Node HTMLVideoElement[JC] def firstElementChild: Element HTMLVideoElement[JC] def focus(): Unit +HTMLVideoElement[JC] def focus(options: FocusOptions): Unit HTMLVideoElement[JC] def getAttribute(name: String): String HTMLVideoElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String HTMLVideoElement[JC] def getAttributeNode(name: String): Attr @@ -15173,6 +15235,7 @@ Image[JC] var filters: Object Image[JC] def firstChild: Node Image[JC] def firstElementChild: Element Image[JC] def focus(): Unit +Image[JC] def focus(options: FocusOptions): Unit Image[JC] def getAttribute(name: String): String Image[JC] def getAttributeNS(namespaceURI: String, localName: String): String Image[JC] def getAttributeNode(name: String): Attr diff --git a/dom/src/main/scala/org/scalajs/dom/FocusOptions.scala b/dom/src/main/scala/org/scalajs/dom/FocusOptions.scala new file mode 100644 index 000000000..8ea17abc5 --- /dev/null +++ b/dom/src/main/scala/org/scalajs/dom/FocusOptions.scala @@ -0,0 +1,8 @@ +package org.scalajs.dom + +import scala.scalajs.js + +trait FocusOptions { + var preventScroll: js.UndefOr[Boolean] = js.undefined + var focusVisible: js.UndefOr[Boolean] = js.undefined +} diff --git a/dom/src/main/scala/org/scalajs/dom/HTMLElement.scala b/dom/src/main/scala/org/scalajs/dom/HTMLElement.scala index b7236a7a2..d3020034b 100644 --- a/dom/src/main/scala/org/scalajs/dom/HTMLElement.scala +++ b/dom/src/main/scala/org/scalajs/dom/HTMLElement.scala @@ -169,6 +169,7 @@ abstract class HTMLElement extends Element { /** Sets focus on the specified element, if it can be focused. */ def focus(): Unit = js.native + def focus(options: FocusOptions): Unit = js.native /** The blur method removes keyboard focus from the current element. */ def blur(): Unit = js.native From fcc918bf4fa6578c9890963e963fe0eb03004826 Mon Sep 17 00:00:00 2001 From: Christoph Bunte Date: Thu, 11 May 2023 18:05:03 +0200 Subject: [PATCH 14/14] make FocusOptions extend js.Object --- api-reports/2_12.txt | 4 ++-- api-reports/2_13.txt | 4 ++-- dom/src/main/scala/org/scalajs/dom/FocusOptions.scala | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index 40b541d13..e061456ba 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -2284,8 +2284,8 @@ FocusEventInit[JT] var detail: js.UndefOr[Int] FocusEventInit[JT] var relatedTarget: js.UndefOr[EventTarget] FocusEventInit[JT] var scoped: js.UndefOr[Boolean] FocusEventInit[JT] var view: js.UndefOr[Window] -FocusOptions[ST] var focusVisible: js.UndefOr[Boolean] -FocusOptions[ST] var preventScroll: js.UndefOr[Boolean] +FocusOptions[JT] var focusVisible: js.UndefOr[Boolean] +FocusOptions[JT] var preventScroll: js.UndefOr[Boolean] FormData[JC] def append(name: js.Any, value: js.Any, blobName: String?): Unit FormData[JO] FrameType[JT] diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index 40b541d13..e061456ba 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -2284,8 +2284,8 @@ FocusEventInit[JT] var detail: js.UndefOr[Int] FocusEventInit[JT] var relatedTarget: js.UndefOr[EventTarget] FocusEventInit[JT] var scoped: js.UndefOr[Boolean] FocusEventInit[JT] var view: js.UndefOr[Window] -FocusOptions[ST] var focusVisible: js.UndefOr[Boolean] -FocusOptions[ST] var preventScroll: js.UndefOr[Boolean] +FocusOptions[JT] var focusVisible: js.UndefOr[Boolean] +FocusOptions[JT] var preventScroll: js.UndefOr[Boolean] FormData[JC] def append(name: js.Any, value: js.Any, blobName: String?): Unit FormData[JO] FrameType[JT] diff --git a/dom/src/main/scala/org/scalajs/dom/FocusOptions.scala b/dom/src/main/scala/org/scalajs/dom/FocusOptions.scala index 8ea17abc5..904e9566e 100644 --- a/dom/src/main/scala/org/scalajs/dom/FocusOptions.scala +++ b/dom/src/main/scala/org/scalajs/dom/FocusOptions.scala @@ -2,7 +2,7 @@ package org.scalajs.dom import scala.scalajs.js -trait FocusOptions { +trait FocusOptions extends js.Object { var preventScroll: js.UndefOr[Boolean] = js.undefined var focusVisible: js.UndefOr[Boolean] = js.undefined }