Skip to content

Commit 34e3873

Browse files
committed
prePR
1 parent cb35aea commit 34e3873

File tree

3 files changed

+233
-1
lines changed

3 files changed

+233
-1
lines changed

api-reports/2_12.txt

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16495,6 +16495,122 @@ MIMEType[SO] val `application/xml` = "application/xml".asInstanceOf[MIMEType]
1649516495
MIMEType[SO] val `image/svg+xml` = "image/svg+xml".asInstanceOf[MIMEType]
1649616496
MIMEType[SO] val `text/html` = "text/html".asInstanceOf[MIMEType]
1649716497
MIMEType[SO] val `text/xml` = "text/xml".asInstanceOf[MIMEType]
16498+
MathMLElement[JC] var accessKey: String
16499+
MathMLElement[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
16500+
MathMLElement[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
16501+
MathMLElement[JC] def after(nodes: Node | String*): Unit
16502+
MathMLElement[JC] def append(nodes: Node | String*): Unit
16503+
MathMLElement[JC] def appendChild(newChild: Node): Node
16504+
MathMLElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot
16505+
MathMLElement[JC] def attributes: NamedNodeMap
16506+
MathMLElement[JC] def baseURI: String
16507+
MathMLElement[JC] def before(nodes: Node | String*): Unit
16508+
MathMLElement[JC] def childElementCount: Int
16509+
MathMLElement[JC] def childNodes: NodeList[Node]
16510+
MathMLElement[JC] def children: HTMLCollection[Element]
16511+
MathMLElement[JC] var classList: DOMTokenList
16512+
MathMLElement[JC] def clientHeight: Int
16513+
MathMLElement[JC] def clientLeft: Int
16514+
MathMLElement[JC] def clientTop: Int
16515+
MathMLElement[JC] def clientWidth: Int
16516+
MathMLElement[JC] def cloneNode(deep: Boolean?): Node
16517+
MathMLElement[JC] def closest(selector: String): Element
16518+
MathMLElement[JC] def compareDocumentPosition(other: Node): Int
16519+
MathMLElement[JC] def contains(otherNode: Node): Boolean
16520+
MathMLElement[JC] def dispatchEvent(evt: Event): Boolean
16521+
MathMLElement[JC] def firstChild: Node
16522+
MathMLElement[JC] def firstElementChild: Element
16523+
MathMLElement[JC] def getAttribute(name: String): String
16524+
MathMLElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String
16525+
MathMLElement[JC] def getAttributeNode(name: String): Attr
16526+
MathMLElement[JC] def getAttributeNodeNS(namespaceURI: String, localName: String): Attr
16527+
MathMLElement[JC] def getBoundingClientRect(): DOMRect
16528+
MathMLElement[JC] def getClientRects(): DOMRectList
16529+
MathMLElement[JC] def getElementsByClassName(classNames: String): HTMLCollection[Element]
16530+
MathMLElement[JC] def getElementsByTagName(name: String): HTMLCollection[Element]
16531+
MathMLElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element]
16532+
MathMLElement[JC] def hasAttribute(name: String): Boolean
16533+
MathMLElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean
16534+
MathMLElement[JC] def hasAttributes(): Boolean
16535+
MathMLElement[JC] def hasChildNodes(): Boolean
16536+
MathMLElement[JC] def hasPointerCapture(pointerId: Double): Boolean
16537+
MathMLElement[JC] var id: String
16538+
MathMLElement[JC] var innerHTML: String
16539+
MathMLElement[JC] var innerText: String
16540+
MathMLElement[JC] def insertAdjacentElement(position: String, element: Element): Element
16541+
MathMLElement[JC] def insertAdjacentHTML(where: String, html: String): Unit
16542+
MathMLElement[JC] def insertBefore(newChild: Node, refChild: Node): Node
16543+
MathMLElement[JC] def isConnected: Boolean
16544+
MathMLElement[JC] def isDefaultNamespace(namespaceURI: String): Boolean
16545+
MathMLElement[JC] def isEqualNode(arg: Node): Boolean
16546+
MathMLElement[JC] def isSameNode(other: Node): Boolean
16547+
MathMLElement[JC] def isSupported(feature: String, version: String): Boolean
16548+
MathMLElement[JC] def lastChild: Node
16549+
MathMLElement[JC] def lastElementChild: Element
16550+
MathMLElement[JC] def localName: String
16551+
MathMLElement[JC] def lookupNamespaceURI(prefix: String): String
16552+
MathMLElement[JC] def lookupPrefix(namespaceURI: String): String
16553+
MathMLElement[JC] def matches(selector: String): Boolean
16554+
MathMLElement[JC] def namespaceURI: String
16555+
MathMLElement[JC] def nextElementSibling: Element
16556+
MathMLElement[JC] def nextSibling: Node
16557+
MathMLElement[JC] def nodeName: String
16558+
MathMLElement[JC] def nodeType: Int
16559+
MathMLElement[JC] var nodeValue: String
16560+
MathMLElement[JC] def normalize(): Unit
16561+
MathMLElement[JC] var onclick: js.Function1[MouseEvent, _]
16562+
MathMLElement[JC] var oncompositionend: js.Function1[CompositionEvent, _]
16563+
MathMLElement[JC] var oncompositionstart: js.Function1[CompositionEvent, _]
16564+
MathMLElement[JC] var oncompositionupdate: js.Function1[CompositionEvent, _]
16565+
MathMLElement[JC] var oncopy: js.Function1[ClipboardEvent, _]
16566+
MathMLElement[JC] var oncut: js.Function1[ClipboardEvent, _]
16567+
MathMLElement[JC] var onfocusin: js.Function1[FocusEvent, _]
16568+
MathMLElement[JC] var onfocusout: js.Function1[FocusEvent, _]
16569+
MathMLElement[JC] var onfullscreenchange: js.Function1[Event, _]
16570+
MathMLElement[JC] var onfullscreenerror: js.Function1[Event, _]
16571+
MathMLElement[JC] var onload: js.Function1[Event, _]
16572+
MathMLElement[JC] var onmousedown: js.Function1[MouseEvent, _]
16573+
MathMLElement[JC] var onmousemove: js.Function1[MouseEvent, _]
16574+
MathMLElement[JC] var onmouseout: js.Function1[MouseEvent, _]
16575+
MathMLElement[JC] var onmouseover: js.Function1[MouseEvent, _]
16576+
MathMLElement[JC] var onmouseup: js.Function1[MouseEvent, _]
16577+
MathMLElement[JC] var onpaste: js.Function1[ClipboardEvent, _]
16578+
MathMLElement[JC] var outerHTML: String
16579+
MathMLElement[JC] def ownerDocument: Document
16580+
MathMLElement[JC] def parentNode: Node
16581+
MathMLElement[JC] def prefix: String
16582+
MathMLElement[JC] def prepend(nodes: Node | String*): Unit
16583+
MathMLElement[JC] def previousElementSibling: Element
16584+
MathMLElement[JC] def previousSibling: Node
16585+
MathMLElement[JC] def querySelector(selectors: String): Element
16586+
MathMLElement[JC] def querySelectorAll(selectors: String): NodeList[Element]
16587+
MathMLElement[JC] def releasePointerCapture(pointerId: Double): Unit
16588+
MathMLElement[JC] def remove(): Unit
16589+
MathMLElement[JC] def removeAttribute(name: String): Unit
16590+
MathMLElement[JC] def removeAttributeNS(namespaceURI: String, localName: String): Unit
16591+
MathMLElement[JC] def removeAttributeNode(oldAttr: Attr): Attr
16592+
MathMLElement[JC] def removeChild(oldChild: Node): Node
16593+
MathMLElement[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
16594+
MathMLElement[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
16595+
MathMLElement[JC] def replaceChild(newChild: Node, oldChild: Node): Node
16596+
MathMLElement[JC] def replaceChildren(nodes: Node | String*): Unit
16597+
MathMLElement[JC] def replaceWith(nodes: Node | String*): Unit
16598+
MathMLElement[JC] def requestFullscreen(options: FullscreenOptions?): js.Promise[Unit]
16599+
MathMLElement[JC] def requestPointerLock(): Unit
16600+
MathMLElement[JC] def scrollHeight: Int
16601+
MathMLElement[JC] def scrollIntoView(top: Boolean?): Unit
16602+
MathMLElement[JC] var scrollLeft: Double
16603+
MathMLElement[JC] var scrollTop: Double
16604+
MathMLElement[JC] def scrollWidth: Int
16605+
MathMLElement[JC] def setAttribute(name: String, value: String): Unit
16606+
MathMLElement[JC] def setAttributeNS(namespaceURI: String, qualifiedName: String, value: String): Unit
16607+
MathMLElement[JC] def setAttributeNode(newAttr: Attr): Attr
16608+
MathMLElement[JC] def setAttributeNodeNS(newAttr: Attr): Attr
16609+
MathMLElement[JC] def setPointerCapture(pointerId: Double): Unit
16610+
MathMLElement[JC] def shadowRoot: ShadowRoot
16611+
MathMLElement[JC] def tagName: String
16612+
MathMLElement[JC] var textContent: String
16613+
MathMLElement[JC] var xmlbase: String
1649816614
MediaDeviceInfo[JT] val deviceId: String
1649916615
MediaDeviceInfo[JT] val groupId: String
1650016616
MediaDeviceInfo[JT] val kind: MediaDeviceKind

api-reports/2_13.txt

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16495,6 +16495,122 @@ MIMEType[SO] val `application/xml` = "application/xml".asInstanceOf[MIMEType]
1649516495
MIMEType[SO] val `image/svg+xml` = "image/svg+xml".asInstanceOf[MIMEType]
1649616496
MIMEType[SO] val `text/html` = "text/html".asInstanceOf[MIMEType]
1649716497
MIMEType[SO] val `text/xml` = "text/xml".asInstanceOf[MIMEType]
16498+
MathMLElement[JC] var accessKey: String
16499+
MathMLElement[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
16500+
MathMLElement[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
16501+
MathMLElement[JC] def after(nodes: Node | String*): Unit
16502+
MathMLElement[JC] def append(nodes: Node | String*): Unit
16503+
MathMLElement[JC] def appendChild(newChild: Node): Node
16504+
MathMLElement[JC] def attachShadow(init: ShadowRootInit): ShadowRoot
16505+
MathMLElement[JC] def attributes: NamedNodeMap
16506+
MathMLElement[JC] def baseURI: String
16507+
MathMLElement[JC] def before(nodes: Node | String*): Unit
16508+
MathMLElement[JC] def childElementCount: Int
16509+
MathMLElement[JC] def childNodes: NodeList[Node]
16510+
MathMLElement[JC] def children: HTMLCollection[Element]
16511+
MathMLElement[JC] var classList: DOMTokenList
16512+
MathMLElement[JC] def clientHeight: Int
16513+
MathMLElement[JC] def clientLeft: Int
16514+
MathMLElement[JC] def clientTop: Int
16515+
MathMLElement[JC] def clientWidth: Int
16516+
MathMLElement[JC] def cloneNode(deep: Boolean?): Node
16517+
MathMLElement[JC] def closest(selector: String): Element
16518+
MathMLElement[JC] def compareDocumentPosition(other: Node): Int
16519+
MathMLElement[JC] def contains(otherNode: Node): Boolean
16520+
MathMLElement[JC] def dispatchEvent(evt: Event): Boolean
16521+
MathMLElement[JC] def firstChild: Node
16522+
MathMLElement[JC] def firstElementChild: Element
16523+
MathMLElement[JC] def getAttribute(name: String): String
16524+
MathMLElement[JC] def getAttributeNS(namespaceURI: String, localName: String): String
16525+
MathMLElement[JC] def getAttributeNode(name: String): Attr
16526+
MathMLElement[JC] def getAttributeNodeNS(namespaceURI: String, localName: String): Attr
16527+
MathMLElement[JC] def getBoundingClientRect(): DOMRect
16528+
MathMLElement[JC] def getClientRects(): DOMRectList
16529+
MathMLElement[JC] def getElementsByClassName(classNames: String): HTMLCollection[Element]
16530+
MathMLElement[JC] def getElementsByTagName(name: String): HTMLCollection[Element]
16531+
MathMLElement[JC] def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element]
16532+
MathMLElement[JC] def hasAttribute(name: String): Boolean
16533+
MathMLElement[JC] def hasAttributeNS(namespaceURI: String, localName: String): Boolean
16534+
MathMLElement[JC] def hasAttributes(): Boolean
16535+
MathMLElement[JC] def hasChildNodes(): Boolean
16536+
MathMLElement[JC] def hasPointerCapture(pointerId: Double): Boolean
16537+
MathMLElement[JC] var id: String
16538+
MathMLElement[JC] var innerHTML: String
16539+
MathMLElement[JC] var innerText: String
16540+
MathMLElement[JC] def insertAdjacentElement(position: String, element: Element): Element
16541+
MathMLElement[JC] def insertAdjacentHTML(where: String, html: String): Unit
16542+
MathMLElement[JC] def insertBefore(newChild: Node, refChild: Node): Node
16543+
MathMLElement[JC] def isConnected: Boolean
16544+
MathMLElement[JC] def isDefaultNamespace(namespaceURI: String): Boolean
16545+
MathMLElement[JC] def isEqualNode(arg: Node): Boolean
16546+
MathMLElement[JC] def isSameNode(other: Node): Boolean
16547+
MathMLElement[JC] def isSupported(feature: String, version: String): Boolean
16548+
MathMLElement[JC] def lastChild: Node
16549+
MathMLElement[JC] def lastElementChild: Element
16550+
MathMLElement[JC] def localName: String
16551+
MathMLElement[JC] def lookupNamespaceURI(prefix: String): String
16552+
MathMLElement[JC] def lookupPrefix(namespaceURI: String): String
16553+
MathMLElement[JC] def matches(selector: String): Boolean
16554+
MathMLElement[JC] def namespaceURI: String
16555+
MathMLElement[JC] def nextElementSibling: Element
16556+
MathMLElement[JC] def nextSibling: Node
16557+
MathMLElement[JC] def nodeName: String
16558+
MathMLElement[JC] def nodeType: Int
16559+
MathMLElement[JC] var nodeValue: String
16560+
MathMLElement[JC] def normalize(): Unit
16561+
MathMLElement[JC] var onclick: js.Function1[MouseEvent, _]
16562+
MathMLElement[JC] var oncompositionend: js.Function1[CompositionEvent, _]
16563+
MathMLElement[JC] var oncompositionstart: js.Function1[CompositionEvent, _]
16564+
MathMLElement[JC] var oncompositionupdate: js.Function1[CompositionEvent, _]
16565+
MathMLElement[JC] var oncopy: js.Function1[ClipboardEvent, _]
16566+
MathMLElement[JC] var oncut: js.Function1[ClipboardEvent, _]
16567+
MathMLElement[JC] var onfocusin: js.Function1[FocusEvent, _]
16568+
MathMLElement[JC] var onfocusout: js.Function1[FocusEvent, _]
16569+
MathMLElement[JC] var onfullscreenchange: js.Function1[Event, _]
16570+
MathMLElement[JC] var onfullscreenerror: js.Function1[Event, _]
16571+
MathMLElement[JC] var onload: js.Function1[Event, _]
16572+
MathMLElement[JC] var onmousedown: js.Function1[MouseEvent, _]
16573+
MathMLElement[JC] var onmousemove: js.Function1[MouseEvent, _]
16574+
MathMLElement[JC] var onmouseout: js.Function1[MouseEvent, _]
16575+
MathMLElement[JC] var onmouseover: js.Function1[MouseEvent, _]
16576+
MathMLElement[JC] var onmouseup: js.Function1[MouseEvent, _]
16577+
MathMLElement[JC] var onpaste: js.Function1[ClipboardEvent, _]
16578+
MathMLElement[JC] var outerHTML: String
16579+
MathMLElement[JC] def ownerDocument: Document
16580+
MathMLElement[JC] def parentNode: Node
16581+
MathMLElement[JC] def prefix: String
16582+
MathMLElement[JC] def prepend(nodes: Node | String*): Unit
16583+
MathMLElement[JC] def previousElementSibling: Element
16584+
MathMLElement[JC] def previousSibling: Node
16585+
MathMLElement[JC] def querySelector(selectors: String): Element
16586+
MathMLElement[JC] def querySelectorAll(selectors: String): NodeList[Element]
16587+
MathMLElement[JC] def releasePointerCapture(pointerId: Double): Unit
16588+
MathMLElement[JC] def remove(): Unit
16589+
MathMLElement[JC] def removeAttribute(name: String): Unit
16590+
MathMLElement[JC] def removeAttributeNS(namespaceURI: String, localName: String): Unit
16591+
MathMLElement[JC] def removeAttributeNode(oldAttr: Attr): Attr
16592+
MathMLElement[JC] def removeChild(oldChild: Node): Node
16593+
MathMLElement[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
16594+
MathMLElement[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
16595+
MathMLElement[JC] def replaceChild(newChild: Node, oldChild: Node): Node
16596+
MathMLElement[JC] def replaceChildren(nodes: Node | String*): Unit
16597+
MathMLElement[JC] def replaceWith(nodes: Node | String*): Unit
16598+
MathMLElement[JC] def requestFullscreen(options: FullscreenOptions?): js.Promise[Unit]
16599+
MathMLElement[JC] def requestPointerLock(): Unit
16600+
MathMLElement[JC] def scrollHeight: Int
16601+
MathMLElement[JC] def scrollIntoView(top: Boolean?): Unit
16602+
MathMLElement[JC] var scrollLeft: Double
16603+
MathMLElement[JC] var scrollTop: Double
16604+
MathMLElement[JC] def scrollWidth: Int
16605+
MathMLElement[JC] def setAttribute(name: String, value: String): Unit
16606+
MathMLElement[JC] def setAttributeNS(namespaceURI: String, qualifiedName: String, value: String): Unit
16607+
MathMLElement[JC] def setAttributeNode(newAttr: Attr): Attr
16608+
MathMLElement[JC] def setAttributeNodeNS(newAttr: Attr): Attr
16609+
MathMLElement[JC] def setPointerCapture(pointerId: Double): Unit
16610+
MathMLElement[JC] def shadowRoot: ShadowRoot
16611+
MathMLElement[JC] def tagName: String
16612+
MathMLElement[JC] var textContent: String
16613+
MathMLElement[JC] var xmlbase: String
1649816614
MediaDeviceInfo[JT] val deviceId: String
1649916615
MediaDeviceInfo[JT] val groupId: String
1650016616
MediaDeviceInfo[JT] val kind: MediaDeviceKind

dom/src/main/scala/org/scalajs/dom/MathMLElement.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import scala.scalajs.js.annotation._
1010
*/
1111
@js.native
1212
@JSGlobal
13-
abstract class MathMLElement extends Element {
13+
abstract class MathMLElement extends org.scalajs.dom.Element {
1414
var onclick: js.Function1[MouseEvent, _] = js.native
1515
var onmouseover: js.Function1[MouseEvent, _] = js.native
1616
var onmouseout: js.Function1[MouseEvent, _] = js.native

0 commit comments

Comments
 (0)