org.scalajs.dom.raw

HTMLMediaElement

Related Docs: object HTMLMediaElement | package raw

class HTMLMediaElement extends HTMLElement

The HTMLMediaElement interface has special properties and methods (beyond the properties and methods available for all children of HTMLElement), that are common to all media-related objects.

MDN

Annotations
@RawJSType()
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. HTMLMediaElement
  2. HTMLElement
  3. Element
  4. ParentNode
  5. NodeSelector
  6. Node
  7. EventTarget
  8. Object
  9. Any
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HTMLMediaElement()

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. var accessKey: String

    Definition Classes
    Element
  5. def addEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean = js.native): Unit

    The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on.

    The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on. The event target may be an Element in a document, the Document itself, a Window, or any other object that supports events (such as XMLHttpRequest).

    MDN

    Definition Classes
    EventTarget
  6. def appendChild(newChild: Node): Node

    Adds a node to the end of the list of children of a specified parent node.

    Adds a node to the end of the list of children of a specified parent node. If the node already exists it is removed from current parent node, then added to new parent node.

    MDN

    Definition Classes
    Node
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def attributes: NamedNodeMap

    .attributes is a collection of all attribute nodes registered to the specified node.

    .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).  

    MDN

    Definition Classes
    Node
  9. var audioTracks: AudioTrackList

    Represents the list of AudioTrack objects contained in the element.

    Represents the list of AudioTrack objects contained in the element.

    MDN

  10. var autoplay: Boolean

    Reflects the autoplay HTML attribute, indicating whether playback should automatically begin as soon as enough media is available to do so without interruption.

    Reflects the autoplay HTML attribute, indicating whether playback should automatically begin as soon as enough media is available to do so without interruption.

    MDN

  11. def blur(): Unit

    The blur method removes keyboard focus from the current element.

    The blur method removes keyboard focus from the current element.

    MDN

    Definition Classes
    HTMLElement
  12. var buffered: TimeRanges

    The ranges of the media source that the browser has buffered (if any) at the moment the buffered property is accessed.

    The ranges of the media source that the browser has buffered (if any) at the moment the buffered property is accessed. The returned TimeRanges object is normalized.

    MDN

  13. def canPlayType(type: String): String

    Determines whether the specified media type can be played back.

    Determines whether the specified media type can be played back.

    MDN

  14. def childElementCount: Int

    Returns an unsigned long giving the amount of children that the object has.

    Returns an unsigned long giving the amount of children that the object has.

    MDN

    Definition Classes
    ParentNode
  15. def childNodes: NodeList

    Returns a live NodeList containing all the children of this node.

    Returns a live NodeList containing all the children of this node. NodeList being live means that if the children of the Node change, the NodeList object is automatically updated.

    MDN

    Definition Classes
    Node
  16. def children: HTMLCollection

    Returns a live HTMLCollection containing all objects of type Element that are children of the object.

    Returns a live HTMLCollection containing all objects of type Element that are children of the object.

    MDN

    Definition Classes
    ParentNode
  17. var classList: DOMTokenList

    Supported by FF>3.6, any Opera, any Chrome, any IE, any Safari

    Supported by FF>3.6, any Opera, any Chrome, any IE, any Safari

    Definition Classes
    Element
  18. var className: String

    Definition Classes
    HTMLElement
  19. def click(): Unit

    The click method simulates a mouse click on an element.

    The click method simulates a mouse click on an element.

    MDN

    Definition Classes
    HTMLElement
  20. def clientHeight: Int

    Returns the inner height of an element in pixels, including padding but not the horizontal scrollbar height, border, or margin.

    Returns the inner height of an element in pixels, including padding but not the horizontal scrollbar height, border, or margin.

    clientHeight can be calculated as CSS height + CSS padding - height of horizontal scrollbar (if present).

    MDN

    Definition Classes
    Element
  21. def clientLeft: Int

    The width of the left border of an element in pixels.

    The width of the left border of an element in pixels. It includes the width of the vertical scrollbar if the text direction of the element is right–to–left and if there is an overflow causing a left vertical scrollbar to be rendered. clientLeft does not include the left margin or the left padding. clientLeft is read-only.

    MDN

    Definition Classes
    Element
  22. def clientTop: Int

    The width of the top border of an element in pixels.

    The width of the top border of an element in pixels. It does not include the top margin or padding. clientTop is read-only.

    MDN

    Definition Classes
    Element
  23. def clientWidth: Int

    clientWidth is the inner width of an element in pixels.

    clientWidth is the inner width of an element in pixels. It includes padding but not the vertical scrollbar (if present, if rendered), border or margin.

    MDN

    Definition Classes
    Element
  24. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. def cloneNode(deep: Boolean = js.native): Node

    Clone a Node, and optionally, all of its contents.

    Clone a Node, and optionally, all of its contents. By default, it clones the content of the node.

    MDN

    Definition Classes
    Node
  26. def compareDocumentPosition(other: Node): Int

    Compares the position of the current node against another node in any other document.

    Compares the position of the current node against another node in any other document.

    MDN

    Definition Classes
    Node
  27. def contains(child: HTMLElement): Boolean

    Definition Classes
    HTMLElement
  28. var contentEditable: String

    contentEditable is used to indicate whether or not the element is editable.

    contentEditable is used to indicate whether or not the element is editable. This enumerated attribute can have the following values:

    MDN

    Definition Classes
    HTMLElement
  29. var controls: Boolean

    Reflects the controls HTML attribute, indicating whether user interface items for controlling the resource should be displayed.

    Reflects the controls HTML attribute, indicating whether user interface items for controlling the resource should be displayed.

    MDN

  30. var currentSrc: String

    The absolute URL of the chosen media resource (if, for example, the server selects a media file based on the resolution of the user's display), or an empty string if the networkState is EMPTY.

    The absolute URL of the chosen media resource (if, for example, the server selects a media file based on the resolution of the user's display), or an empty string if the networkState is EMPTY.

    MDN

  31. var currentTime: Double

    The current playback time, in seconds.

    The current playback time, in seconds. Setting this value seeks the media to the new time.

    MDN

  32. var defaultPlaybackRate: Double

    The default playback rate for the media.

    The default playback rate for the media. 1.0 is "normal speed," values lower than 1.0 make the media play slower than normal, higher values make it play faster. The value 0.0 is invalid and throws a NOT_SUPPORTED_ERR exception.

    MDN

  33. var dir: String

    The dir attribute gets or sets the text writing directionality of the content of the current element.

    The dir attribute gets or sets the text writing directionality of the content of the current element.

    MDN

    Definition Classes
    HTMLElement
  34. var disabled: Boolean

    Definition Classes
    HTMLElement
  35. def dispatchEvent(evt: Event): Boolean

    Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order.

    Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) apply to events dispatched manually with dispatchEvent().

    MDN

    Definition Classes
    EventTarget
  36. var draggable: Boolean

    Definition Classes
    HTMLElement
  37. var duration: Double

    The length of the media in seconds, or zero if no media data is available.  If the media data is available but the length is unknown, this value is NaN.  If the media is streamed and has no predefined length, the value is Inf.

    The length of the media in seconds, or zero if no media data is available.  If the media data is available but the length is unknown, this value is NaN.  If the media is streamed and has no predefined length, the value is Inf.

    MDN

  38. var ended: Boolean

    Indicates whether the media element has ended playback.

    Indicates whether the media element has ended playback.

    MDN

  39. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  40. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  41. var error: MediaError

    The MediaError object for the most recent error, or null if there has not been an error.

    The MediaError object for the most recent error, or null if there has not been an error.

    MDN

  42. var filters: AnyRef

    Definition Classes
    HTMLElement
  43. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  44. def firstChild: Node

    Returns the node's first child in the tree, or null if the node is childless.

    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.

    MDN

    Definition Classes
    Node
  45. def firstElementChild: Element

    Returns the Element that is the first child of the object, or null if there is none.

    Returns the Element that is the first child of the object, or null if there is none.

    MDN

    Definition Classes
    ParentNode
  46. def focus(): Unit

    Sets focus on the specified element, if it can be focused.

    Sets focus on the specified element, if it can be focused.

    MDN

    Definition Classes
    HTMLElement
  47. def getAttribute(): String

    getAttribute() returns the value of the named attribute on the specified element.

    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.

    MDN

    Definition Classes
    Element
  48. def getAttribute(name: String): String

    getAttribute() returns the value of the named attribute on the specified element.

    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.

    MDN

    Definition Classes
    Element
  49. def getAttributeNS(namespaceURI: String, localName: String): String

    getAttributeNS returns the string value of the attribute with the specified namespace and name.

    getAttributeNS returns the string value of the attribute with the specified namespace and name. If the named attribute does not exist, the value returned will either be null or "" (the empty string); see Notes for details.

    MDN

    Definition Classes
    Element
  50. def getAttributeNode(name: String): Attr

    Returns the specified attribute of the specified element, as an Attr node.

    Returns the specified attribute of the specified element, as an Attr node.

    MDN

    Definition Classes
    Element
  51. def getAttributeNodeNS(namespaceURI: String, localName: String): Attr

    Returns the Attr node for the attribute with the given namespace and name.

    Returns the Attr node for the attribute with the given namespace and name.

    MDN

    Definition Classes
    Element
  52. def getBoundingClientRect(): ClientRect

    Returns a text rectangle object that encloses a group of text rectangles.

    Returns a text rectangle object that encloses a group of text rectangles.

    MDN

    Definition Classes
    Element
  53. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  54. def getClientRects(): ClientRectList

    Returns a collection of rectangles that indicate the bounding rectangles for each box in a client.

    Returns a collection of rectangles that indicate the bounding rectangles for each box in a client.

    MDN

    Definition Classes
    Element
  55. def getElementsByClassName(classNames: String): NodeList

    Definition Classes
    Element
  56. def getElementsByTagName(name: String): NodeList

    Returns a list of elements with the given tag name.

    Returns a list of elements with the given tag name. The subtree underneath the specified element is searched, excluding the element itself. The returned list is live, meaning that it updates itself with the DOM tree automatically. Consequently, there is no need to call several times element.getElementsByTagName with the same element and arguments.

    MDN

    Definition Classes
    Element
  57. def getElementsByTagNameNS(namespaceURI: String, localName: String): NodeList

    Returns a list of elements with the given tag name belonging to the given namespace.

    Returns a list of elements with the given tag name belonging to the given namespace.

    MDN

    Definition Classes
    Element
  58. def hasAttribute(name: String): Boolean

    hasAttribute returns a boolean value indicating whether the specified element has the specified attribute or not.

    hasAttribute returns a boolean value indicating whether the specified element has the specified attribute or not.

    MDN

    Definition Classes
    Element
  59. def hasAttributeNS(namespaceURI: String, localName: String): Boolean

    hasAttributeNS returns a boolean value indicating whether the current element has the specified attribute.

    hasAttributeNS returns a boolean value indicating whether the current element has the specified attribute.

    MDN

    Definition Classes
    Element
  60. def hasAttributes(): Boolean

    hasAttributes returns a boolean value of true or false, indicating if the current element has any attributes or not.

    hasAttributes returns a boolean value of true or false, indicating if the current element has any attributes or not.

    MDN

    Definition Classes
    Node
  61. def hasChildNodes(): Boolean

    hasChildNodes returns a Boolean value indicating whether the current Node has child nodes or not.

    hasChildNodes returns a Boolean value indicating whether the current Node has child nodes or not.

    MDN

    Definition Classes
    Node
  62. def hasOwnProperty(v: String): Boolean

    Definition Classes
    Object
  63. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  64. var id: String

    Definition Classes
    Element
  65. var initialTime: Double

    The initial playback position in seconds.

    The initial playback position in seconds.

    MDN

  66. var innerHTML: String

    innerHTML sets or gets the HTML syntax describing the element's descendants.

    innerHTML sets or gets the HTML syntax describing the element's descendants.

    Note: If a

    , , or node has a child text node that includes the characters (&), (<), or (>), innerHTML returns these characters as &amp, &lt and &gt respectively. Use Node.textContent to get a correct copy of these text nodes' contents. </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#insertAdjacentHTML" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="insertAdjacentHTML(where:String,html:String):Unit"></a> <a id="insertAdjacentHTML(String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">insertAdjacentHTML</span><span class="params">(<span name="where">where: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="html">html: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@insertAdjacentHTML(where:String,html:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Supported by FF&gt;8, Opera&gt;7, Chrome&gt;1, IE&gt;4, Safari&gt;4 </p><div class="fullcomment"><div class="comment cmt"><p>Supported by FF&gt;8, Opera&gt;7, Chrome&gt;1, IE&gt;4, Safari&gt;4 </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#insertBefore" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="insertBefore(newChild:org.scalajs.dom.raw.Node,refChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node"></a> <a id="insertBefore(Node,Node):Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">insertBefore</span><span class="params">(<span name="newChild">newChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>, <span name="refChild">refChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a> = <span class="symbol">js.native</span></span>)</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@insertBefore(newChild:org.scalajs.dom.raw.Node,refChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Inserts the first Node given in a parameter immediately before the second, child of this element, Node.</p><div class="fullcomment"><div class="comment cmt"><p>Inserts the first Node given in a parameter immediately before the second, child of this element, Node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#isContentEditable" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isContentEditable:Boolean"></a> <a id="isContentEditable:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">isContentEditable</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@isContentEditable:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">isContentEditable returns true if the contents of the element are editable; otherwise it returns false.</p><div class="fullcomment"><div class="comment cmt"><p>isContentEditable returns true if the contents of the element are editable; otherwise it returns false.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#isDefaultNamespace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isDefaultNamespace(namespaceURI:String):Boolean"></a> <a id="isDefaultNamespace(String):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isDefaultNamespace</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@isDefaultNamespace(namespaceURI:String):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">isDefaultNamespace accepts a namespace URI as an argument and returns true if the namespace is the default namespace on the given node or false if not.</p><div class="fullcomment"><div class="comment cmt"><p>isDefaultNamespace accepts a namespace URI as an argument and returns true if the namespace is the default namespace on the given node or false if not.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#isEqualNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isEqualNode(arg:org.scalajs.dom.raw.Node):Boolean"></a> <a id="isEqualNode(Node):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isEqualNode</span><span class="params">(<span name="arg">arg: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@isEqualNode(arg:org.scalajs.dom.raw.Node):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">If #targetElm is first div element in document, &quot;true&quot; will be displayed.</p><div class="fullcomment"><div class="comment cmt"><p>If #targetElm is first div element in document, &quot;true&quot; will be displayed.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@isInstanceOf[T0]:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.scalajs.js.Object#isPrototypeOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isPrototypeOf(v:scala.scalajs.js.Object):Boolean"></a> <a id="isPrototypeOf(Object):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isPrototypeOf</span><span class="params">(<span name="v">v: <span class="extype" name="scala.scalajs.js.Object">Object</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@isPrototypeOf(v:scala.scalajs.js.Object):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#isSameNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isSameNode(other:org.scalajs.dom.raw.Node):Boolean"></a> <a id="isSameNode(Node):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isSameNode</span><span class="params">(<span name="other">other: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@isSameNode(other:org.scalajs.dom.raw.Node):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Tests whether two nodes are the same, that is they reference the same object.</p><div class="fullcomment"><div class="comment cmt"><p>Tests whether two nodes are the same, that is they reference the same object.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#isSupported" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isSupported(feature:String,version:String):Boolean"></a> <a id="isSupported(String,String):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isSupported</span><span class="params">(<span name="feature">feature: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="version">version: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@isSupported(feature:String,version:String):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The Node.isSupported()returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.</p><div class="fullcomment"><div class="comment cmt"><p>The Node.isSupported()returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#lang" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lang:String"></a> <a id="lang:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">lang</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@lang:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">This property gets or sets the base language of an element's attribute values and text content.</p><div class="fullcomment"><div class="comment cmt"><p>This property gets or sets the base language of an element's attribute values and text content.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#lastChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastChild:org.scalajs.dom.raw.Node"></a> <a id="lastChild:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lastChild</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@lastChild:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a Node representing the last direct child node of the node, or null if the node has no child.</p><div class="fullcomment"><div class="comment cmt"><p>Returns a Node representing the last direct child node of the node, or null if the node has no child.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.ParentNode#lastElementChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastElementChild:org.scalajs.dom.raw.Element"></a> <a id="lastElementChild:Element"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lastElementChild</span><span class="result">: <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@lastElementChild:org.scalajs.dom.raw.Element" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the Element that is the last child of the object, or null if there is none.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the Element that is the last child of the object, or null if there is none.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="ParentNode.html" class="extype" name="org.scalajs.dom.raw.ParentNode">ParentNode</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#load" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="load():Unit"></a> <a id="load():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">load</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@load():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Begins loading the media content from the server.</p><div class="fullcomment"><div class="comment cmt"><p>Begins loading the media content from the server.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Node#localName" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="localName:String"></a> <a id="localName:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">localName</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@localName:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a DOMString representing the local part of the qualified name of an element.</p><div class="fullcomment"><div class="comment cmt"><p>Returns a DOMString representing the local part of the qualified name of an element. In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML. Though the specification requires localName to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#lookupNamespaceURI" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lookupNamespaceURI(prefix:String):String"></a> <a id="lookupNamespaceURI(String):String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lookupNamespaceURI</span><span class="params">(<span name="prefix">prefix: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@lookupNamespaceURI(prefix:String):String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not).</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#lookupPrefix" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lookupPrefix(namespaceURI:String):String"></a> <a id="lookupPrefix(String):String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lookupPrefix</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@lookupPrefix(namespaceURI:String):String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the prefix for a given namespaceURI if present, and null if not.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the prefix for a given namespaceURI if present, and null if not. When multiple prefixes are possible, the result is implementation-dependent.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#loop" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="loop:Boolean"></a> <a id="loop:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">loop</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@loop:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the loop HTML attribute, indicating whether the media element should start over when it reaches the end.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the loop HTML attribute, indicating whether the media element should start over when it reaches the end.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#muted" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="muted:Boolean"></a> <a id="muted:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">muted</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@muted:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">true if the audio is muted, and false otherwise.</p><div class="fullcomment"><div class="comment cmt"><p>true if the audio is muted, and false otherwise.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Node#namespaceURI" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="namespaceURI:String"></a> <a id="namespaceURI:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">namespaceURI</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@namespaceURI:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The namespace URI of this node, or null if it is no namespace.</p><div class="fullcomment"><div class="comment cmt"><p>The namespace URI of this node, or null if it is no namespace. In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the http://www.w3.org/1999/xhtml namespace in both HTML and XML trees. Though the specification requires namespaceURI to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#networkState" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="networkState:Int"></a> <a id="networkState:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">networkState</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@networkState:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The current state of fetching the media over the network.</p><div class="fullcomment"><div class="comment cmt"><p>The current state of fetching the media over the network. Constant Value Description NETWORK_EMPTY 0 There is no data yet.  The readyState is also HAVE_NOTHING. NETWORK_IDLE 1   NETWORK_LOADING 2 The media is loading. NETWORK_NO_SOURCE[1] 3  </p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Node#nextSibling" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nextSibling:org.scalajs.dom.raw.Node"></a> <a id="nextSibling:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nextSibling</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@nextSibling:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the node immediately following the specified one in its parent's childNodes list, or null if the specified node is the last node in that list.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the node immediately following the specified one in its parent's childNodes list, or null if the specified node is the last node in that list.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#nodeName" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nodeName:String"></a> <a id="nodeName:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nodeName</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@nodeName:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a DOMString containing the name of the Node.</p><div class="fullcomment"><div class="comment cmt"><p>Returns a DOMString containing the name of the Node. The structure of the name will differ with the name type. E.g. An HTMLElement will contain the name of the corresponding tag, like 'audio' for an HTMLAudioElement, a Text node will have the '#text' string, or a Document node will have the '#document' string.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#nodeType" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nodeType:Int"></a> <a id="nodeType:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nodeType</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@nodeType:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.</p><div class="fullcomment"><div class="comment cmt"><p>The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#nodeValue" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nodeValue:String"></a> <a id="nodeValue:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nodeValue</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@nodeValue:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Is a DOMString representing the value of an object.</p><div class="fullcomment"><div class="comment cmt"><p>Is a DOMString representing the value of an object. For most Node type, this returns null and any set operation is ignored. For nodes of type TEXT_NODE (Text objects), COMMENT_NODE (Comment objects), and PROCESSING_INSTRUCTION_NODE (ProcessingInstruction objects), the value corresponds to the text data contained in the object.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#normalize" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="normalize():Unit"></a> <a id="normalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">normalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@normalize():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Puts the specified node and all of its subtree into a &quot;normalized&quot; form.</p><div class="fullcomment"><div class="comment cmt"><p>Puts the specified node and all of its subtree into a &quot;normalized&quot; form. In a normalized subtree, no text nodes in the subtree are empty and there are no adjacent text nodes.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@notify():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@notifyAll():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetHeight" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetHeight:Double"></a> <a id="offsetHeight:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetHeight</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@offsetHeight:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Height of an element relative to the element's offsetParent.</p><div class="fullcomment"><div class="comment cmt"><p>Height of an element relative to the element's offsetParent.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetLeft" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetLeft:Double"></a> <a id="offsetLeft:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">offsetLeft</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@offsetLeft:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the number of pixels that the upper left corner of the current element is offset to the left within the offsetParent node.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the number of pixels that the upper left corner of the current element is offset to the left within the offsetParent node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetParent" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetParent:org.scalajs.dom.raw.Element"></a> <a id="offsetParent:Element"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetParent</span><span class="result">: <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@offsetParent:org.scalajs.dom.raw.Element" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">offsetParent returns a reference to the object which is the closest (nearest in the containment hierarchy) positioned containing element.</p><div class="fullcomment"><div class="comment cmt"><p>offsetParent returns a reference to the object which is the closest (nearest in the containment hierarchy) positioned containing element. If the element is non-positioned, the nearest table cell or root element (html in standards compliant mode; body in quirks rendering mode) is the offsetParent. offsetParent returns null when the element has style.display set to &quot;none&quot;. The offsetParent is useful because offsetTop and offsetLeft are relative to its padding edge.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetTop" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetTop:Double"></a> <a id="offsetTop:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetTop</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@offsetTop:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">offsetTop returns the distance of the current element relative to the top of the offsetParent node.</p><div class="fullcomment"><div class="comment cmt"><p>offsetTop returns the distance of the current element relative to the top of the offsetParent node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetWidth" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetWidth:Double"></a> <a id="offsetWidth:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetWidth</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@offsetWidth:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the layout width of an element.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the layout width of an element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onabort" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onabort:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onabort:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onabort</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onabort:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onactivate" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforeactivate" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onbeforeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onbeforeactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforeactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onbeforeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforecopy" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onbeforecopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onbeforecopy:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforecopy</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onbeforecopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforecut" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onbeforecut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onbeforecut:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforecut</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onbeforecut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforedeactivate" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onbeforedeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onbeforedeactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforedeactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onbeforedeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforepaste" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onbeforepaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onbeforepaste:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforepaste</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onbeforepaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onblur" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onblur:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onblur:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onblur</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onblur:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncanplay" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncanplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oncanplay:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncanplay</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@oncanplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncanplaythrough" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncanplaythrough:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oncanplaythrough:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncanplaythrough</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@oncanplaythrough:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onchange" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onchange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onchange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onclick" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onclick:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onclick</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncontextmenu" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncontextmenu:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="oncontextmenu:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncontextmenu</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@oncontextmenu:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#oncopy" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="oncopy:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncopy</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@oncopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncuechange" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncuechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oncuechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncuechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@oncuechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#oncut" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="oncut:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncut</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@oncut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondblclick" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondblclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="ondblclick:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondblclick</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondblclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondeactivate" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="ondeactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondeactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondrag" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondrag:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondrag:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondrag</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondrag:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragend" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondragend:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragend:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragend</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondragend:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The ParentNode.children read-only property returns a live HTMLCollection of child elements of the given object.</p><div class="fullcomment"><div class="comment cmt"><p>The ParentNode.children read-only property returns a live HTMLCollection of child elements of the given object.</p><p>The items in the returned collection are objects and not strings. To get data from those node objects, you must use their properties (e.g. elementNodeReference.children[1].nodeName to get the name, etc.).</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragenter" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondragenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragenter:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragenter</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondragenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragleave" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondragleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragleave:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragleave</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondragleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragover" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondragover:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragover:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragover</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondragover:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragstart" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondragstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragstart:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragstart</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondragstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondrop" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondrop:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondrop:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondrop</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondrop:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondurationchange" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondurationchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="ondurationchange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondurationchange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ondurationchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onemptied" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onemptied:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onemptied:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onemptied</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onemptied:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onended" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onended:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onended:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onended</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onended:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocus" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onfocus:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onfocus:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onfocus</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onfocus:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocusin" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onfocusin:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onfocusin:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onfocusin</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onfocusin:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocusout" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onfocusout:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onfocusout:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onfocusout</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onfocusout:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onhelp" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onhelp:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onhelp:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onhelp</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onhelp:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oninput" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oninput:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oninput:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oninput</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@oninput:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeydown" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onkeydown:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]"></a> <a id="onkeydown:Function1[KeyboardEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onkeydown</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="KeyboardEvent.html" class="extype" name="org.scalajs.dom.raw.KeyboardEvent">KeyboardEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onkeydown:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeypress" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onkeypress:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]"></a> <a id="onkeypress:Function1[KeyboardEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onkeypress</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="KeyboardEvent.html" class="extype" name="org.scalajs.dom.raw.KeyboardEvent">KeyboardEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onkeypress:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeyup" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onkeyup:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]"></a> <a id="onkeyup:Function1[KeyboardEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onkeyup</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="KeyboardEvent.html" class="extype" name="org.scalajs.dom.raw.KeyboardEvent">KeyboardEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onkeyup:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadeddata" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onloadeddata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onloadeddata:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onloadeddata</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onloadeddata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadedmetadata" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onloadedmetadata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onloadedmetadata:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onloadedmetadata</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onloadedmetadata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadstart" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onloadstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onloadstart:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onloadstart</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onloadstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousedown" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmousedown:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmousedown:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmousedown</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmousedown:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseenter" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmouseenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseenter:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseenter</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmouseenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseleave" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmouseleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseleave:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseleave</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmouseleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousemove" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmousemove:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmousemove:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmousemove</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmousemove:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseout" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmouseout:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseout:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseout</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmouseout:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseover" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmouseover:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseover:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseover</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmouseover:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseup" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmouseup:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseup:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseup</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmouseup:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousewheel" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onmousewheel:scala.scalajs.js.Function1[org.scalajs.dom.raw.WheelEvent,_]"></a> <a id="onmousewheel:Function1[WheelEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmousewheel</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="WheelEvent.html" class="extype" name="org.scalajs.dom.raw.WheelEvent">WheelEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onmousewheel:scala.scalajs.js.Function1[org.scalajs.dom.raw.WheelEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#onpaste" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onpaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onpaste:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onpaste</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onpaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onpause" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onpause:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onpause:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onpause</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onpause:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onplay" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onplay:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onplay</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onplaying" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onplaying:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onplaying:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onplaying</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onplaying:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onprogress" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onprogress:scala.scalajs.js.Function1[scala.scalajs.js.Any,_]"></a> <a id="onprogress:Function1[Any,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onprogress</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<span class="extype" name="scala.scalajs.js.Any">Any</span>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onprogress:scala.scalajs.js.Function1[scala.scalajs.js.Any,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onratechange" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onratechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onratechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onratechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onratechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onreadystatechange" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onreadystatechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onreadystatechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onreadystatechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onreadystatechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onreset" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onreset:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onreset:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onreset</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onreset:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onscroll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onscroll:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onscroll:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onscroll</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onscroll:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onseeked" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onseeked:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onseeked:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onseeked</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onseeked:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onseeking" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onseeking:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onseeking:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onseeking</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onseeking:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onselect" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onselect:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onselect:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onselect</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onselect:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onselectstart" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onselectstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onselectstart:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onselectstart</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onselectstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onstalled" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onstalled:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onstalled:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onstalled</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onstalled:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onsubmit" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onsubmit:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onsubmit:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onsubmit</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onsubmit:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onsuspend" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onsuspend:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onsuspend:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onsuspend</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onsuspend:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ontimeupdate" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ontimeupdate:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="ontimeupdate:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ontimeupdate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ontimeupdate:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onvolumechange" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onvolumechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onvolumechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onvolumechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onvolumechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onwaiting" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onwaiting:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onwaiting:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onwaiting</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@onwaiting:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#outerHTML" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="outerHTML:String"></a> <a id="outerHTML:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">outerHTML</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@outerHTML:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Gets the markup of the element including its content.</p><div class="fullcomment"><div class="comment cmt"><p>Gets the markup of the element including its content. When used as a setter, replaces the element with nodes parsed from the given string.</p><p>Supported by FF&gt;10, any Opera, any Chrome, any IE, any Safari </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#ownerDocument" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ownerDocument:org.scalajs.dom.raw.Document"></a> <a id="ownerDocument:Document"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ownerDocument</span><span class="result">: <a href="Document.html" class="extype" name="org.scalajs.dom.raw.Document">Document</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@ownerDocument:org.scalajs.dom.raw.Document" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the Document that this node belongs to.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the Document that this node belongs to. If no document is associated with it, returns null.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#parentElement" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="parentElement:org.scalajs.dom.raw.HTMLElement"></a> <a id="parentElement:HTMLElement"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">parentElement</span><span class="result">: <a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@parentElement:org.scalajs.dom.raw.HTMLElement" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#parentNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="parentNode:org.scalajs.dom.raw.Node"></a> <a id="parentNode:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">parentNode</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@parentNode:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a Node that is the parent of this node.</p><div class="fullcomment"><div class="comment cmt"><p>Returns a Node that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#pause" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="pause():Unit"></a> <a id="pause():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">pause</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@pause():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#paused" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="paused:Boolean"></a> <a id="paused:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">paused</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@paused:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Indicates whether the media element is paused.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether the media element is paused.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#play" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="play():Unit"></a> <a id="play():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">play</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@play():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Begins playback of the media.</p><div class="fullcomment"><div class="comment cmt"><p>Begins playback of the media. If you have changed the src attribute of the media element since the page was loaded, you must call load() before play(), otherwise the original media plays again.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#playbackRate" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="playbackRate:Double"></a> <a id="playbackRate:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">playbackRate</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@playbackRate:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The current rate at which the media is being played back.</p><div class="fullcomment"><div class="comment cmt"><p>The current rate at which the media is being played back. This is used to implement user controls for fast forward, slow motion, and so forth. The normal playback rate is multiplied by this value to obtain the current rate, so a value of 1.0 indicates normal speed. If the playbackRate is negative, the media is played backwards. The audio is muted when the media plays backwards or if the fast forward or slow motion is outside a useful range (E.g. Gecko mute the sound outside the range 0.25 and 5.0). The pitch of the audio is corrected by default and is the same for every speed. Some navigators implement the non-standard preservespitch property to control this.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#played" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="played:org.scalajs.dom.raw.TimeRanges"></a> <a id="played:TimeRanges"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">played</span><span class="result">: <a href="TimeRanges.html" class="extype" name="org.scalajs.dom.raw.TimeRanges">TimeRanges</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@played:org.scalajs.dom.raw.TimeRanges" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The ranges of the media source that the browser has played, if any.</p><div class="fullcomment"><div class="comment cmt"><p>The ranges of the media source that the browser has played, if any.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Node#prefix" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="prefix:String"></a> <a id="prefix:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">prefix</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@prefix:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.</p><div class="fullcomment"><div class="comment cmt"><p>Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified. Though the specification requires localName to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#preload" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="preload:String"></a> <a id="preload:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">preload</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@preload:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the preload HTML attribute, indicating what data should be preloaded, if any.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the preload HTML attribute, indicating what data should be preloaded, if any. Possible values are: none, metadata, auto. See preload attribute documentation for details.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Node#previousSibling" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="previousSibling:org.scalajs.dom.raw.Node"></a> <a id="previousSibling:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">previousSibling</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@previousSibling:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the node immediately preceding the specified one in its parent's childNodes list, null if the specified node is the first in that list.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the node immediately preceding the specified one in its parent's childNodes list, null if the specified node is the first in that list.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.scalajs.js.Object#propertyIsEnumerable" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="propertyIsEnumerable(v:String):Boolean"></a> <a id="propertyIsEnumerable(String):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">propertyIsEnumerable</span><span class="params">(<span name="v">v: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@propertyIsEnumerable(v:String):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="org.scalajs.dom.raw.NodeSelector#querySelector" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="querySelector(selectors:String):org.scalajs.dom.raw.Element"></a> <a id="querySelector(String):Element"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">querySelector</span><span class="params">(<span name="selectors">selectors: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@querySelector(selectors:String):org.scalajs.dom.raw.Element" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the first element within the document (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the first element within the document (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="NodeSelector.html" class="extype" name="org.scalajs.dom.raw.NodeSelector">NodeSelector</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.NodeSelector#querySelectorAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="querySelectorAll(selectors:String):org.scalajs.dom.raw.NodeList"></a> <a id="querySelectorAll(String):NodeList"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">querySelectorAll</span><span class="params">(<span name="selectors">selectors: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="NodeList.html" class="extype" name="org.scalajs.dom.raw.NodeList">NodeList</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@querySelectorAll(selectors:String):org.scalajs.dom.raw.NodeList" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors.</p><div class="fullcomment"><div class="comment cmt"><p>Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="NodeSelector.html" class="extype" name="org.scalajs.dom.raw.NodeSelector">NodeSelector</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#readyState" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="readyState:scala.scalajs.js.Any"></a> <a id="readyState:Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">readyState</span><span class="result">: <span class="extype" name="scala.scalajs.js.Any">Any</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@readyState:scala.scalajs.js.Any" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#recordNumber" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="recordNumber:scala.scalajs.js.Any"></a> <a id="recordNumber:Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">recordNumber</span><span class="result">: <span class="extype" name="scala.scalajs.js.Any">Any</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@recordNumber:scala.scalajs.js.Any" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#removeAttribute" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttribute():Unit"></a> <a id="removeAttribute():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttribute</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@removeAttribute():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttribute removes an attribute from the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttribute removes an attribute from the specified element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#removeAttribute" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttribute(name:String):Unit"></a> <a id="removeAttribute(String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttribute</span><span class="params">(<span name="name">name: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@removeAttribute(name:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttribute removes an attribute from the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttribute removes an attribute from the specified element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#removeAttributeNS" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttributeNS(namespaceURI:String,localName:String):Unit"></a> <a id="removeAttributeNS(String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttributeNS</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="localName">localName: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@removeAttributeNS(namespaceURI:String,localName:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttributeNS removes the specified attribute from an element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttributeNS removes the specified attribute from an element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#removeAttributeNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttributeNode(oldAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr"></a> <a id="removeAttributeNode(Attr):Attr"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttributeNode</span><span class="params">(<span name="oldAttr">oldAttr: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span>)</span><span class="result">: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@removeAttributeNode(oldAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttributeNode removes the specified attribute from the current element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttributeNode removes the specified attribute from the current element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#removeChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeChild(oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node"></a> <a id="removeChild(Node):Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeChild</span><span class="params">(<span name="oldChild">oldChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@removeChild(oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Removes a child node from the current element, which must be a child of the current node.</p><div class="fullcomment"><div class="comment cmt"><p>Removes a child node from the current element, which must be a child of the current node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.EventTarget#removeEventListener" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeEventListener(type:String,listener:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_],useCapture:Boolean):Unit"></a> <a id="removeEventListener(String,Function1[Event,_],Boolean):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeEventListener</span><span class="params">(<span name="type">type: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="listener">listener: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span>, <span name="useCapture">useCapture: <span class="extype" name="scala.Boolean">Boolean</span> = <span class="symbol">js.native</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@removeEventListener(type:String,listener:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_],useCapture:Boolean):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Removes the event listener previously registered with EventTarget.addEventListener.</p><div class="fullcomment"><div class="comment cmt"><p>Removes the event listener previously registered with EventTarget.addEventListener.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="EventTarget.html" class="extype" name="org.scalajs.dom.raw.EventTarget">EventTarget</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#replaceChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="replaceChild(newChild:org.scalajs.dom.raw.Node,oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node"></a> <a id="replaceChild(Node,Node):Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">replaceChild</span><span class="params">(<span name="newChild">newChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>, <span name="oldChild">oldChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@replaceChild(newChild:org.scalajs.dom.raw.Node,oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Replaces one child Node of the current one with the second one given in parameter.</p><div class="fullcomment"><div class="comment cmt"><p>Replaces one child Node of the current one with the second one given in parameter.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollHeight" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollHeight:Int"></a> <a id="scrollHeight:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">scrollHeight</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@scrollHeight:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Height of the scroll view of an element; it includes the element padding but not its margin.</p><div class="fullcomment"><div class="comment cmt"><p>Height of the scroll view of an element; it includes the element padding but not its margin.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollIntoView" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollIntoView(top:Boolean):Unit"></a> <a id="scrollIntoView(Boolean):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">scrollIntoView</span><span class="params">(<span name="top">top: <span class="extype" name="scala.Boolean">Boolean</span> = <span class="symbol">js.native</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@scrollIntoView(top:Boolean):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollLeft" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollLeft:Double"></a> <a id="scrollLeft:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">scrollLeft</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@scrollLeft:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.</p><div class="fullcomment"><div class="comment cmt"><p>scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollTop" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollTop:Double"></a> <a id="scrollTop:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">scrollTop</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@scrollTop:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.</p><div class="fullcomment"><div class="comment cmt"><p>scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollWidth" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollWidth:Int"></a> <a id="scrollWidth:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">scrollWidth</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@scrollWidth:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">scrollWidth is a read–only property that returns either the width in pixels of the content of an element or the width of the element itself, whichever is greater.</p><div class="fullcomment"><div class="comment cmt"><p>scrollWidth is a read–only property that returns either the width in pixels of the content of an element or the width of the element itself, whichever is greater. If the element is wider than its content area (for example, if there are scroll bars for scrolling through the content), the scrollWidth is larger than the clientWidth.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#seekable" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="seekable:org.scalajs.dom.raw.TimeRanges"></a> <a id="seekable:TimeRanges"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">seekable</span><span class="result">: <a href="TimeRanges.html" class="extype" name="org.scalajs.dom.raw.TimeRanges">TimeRanges</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@seekable:org.scalajs.dom.raw.TimeRanges" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The time ranges that the user is able to seek to, if any.</p><div class="fullcomment"><div class="comment cmt"><p>The time ranges that the user is able to seek to, if any.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#seeking" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="seeking:Boolean"></a> <a id="seeking:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">seeking</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@seeking:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Indicates whether the media is in the process of seeking to a new position.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether the media is in the process of seeking to a new position.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Element#setAttribute" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttribute(name:String,value:String):Unit"></a> <a id="setAttribute(String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttribute</span><span class="params">(<span name="name">name: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="value">value: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@setAttribute(name:String,value:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Adds a new attribute or changes the value of an existing attribute on the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>Adds a new attribute or changes the value of an existing attribute on the specified element.</p><p>MSN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#setAttributeNS" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttributeNS(namespaceURI:String,qualifiedName:String,value:String):Unit"></a> <a id="setAttributeNS(String,String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttributeNS</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="qualifiedName">qualifiedName: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="value">value: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@setAttributeNS(namespaceURI:String,qualifiedName:String,value:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.</p><div class="fullcomment"><div class="comment cmt"><p>setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#setAttributeNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttributeNode(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr"></a> <a id="setAttributeNode(Attr):Attr"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttributeNode</span><span class="params">(<span name="newAttr">newAttr: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span>)</span><span class="result">: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@setAttributeNode(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">setAttributeNode() adds a new Attr node to the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>setAttributeNode() adds a new Attr node to the specified element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#setAttributeNodeNS" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttributeNodeNS(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr"></a> <a id="setAttributeNodeNS(Attr):Attr"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttributeNodeNS</span><span class="params">(<span name="newAttr">newAttr: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span>)</span><span class="result">: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@setAttributeNodeNS(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">setAttributeNodeNS adds a new namespaced attribute node to an element.</p><div class="fullcomment"><div class="comment cmt"><p>setAttributeNodeNS adds a new namespaced attribute node to an element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#spellcheck" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="spellcheck:Boolean"></a> <a id="spellcheck:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">spellcheck</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@spellcheck:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#src" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="src:String"></a> <a id="src:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">src</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@src:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the src HTML attribute, containing the URL of a media resource to use.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the src HTML attribute, containing the URL of a media resource to use. Gecko implements a similar functionality is available for streams: mozSrcObject.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#style" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="style:org.scalajs.dom.raw.CSSStyleDeclaration"></a> <a id="style:CSSStyleDeclaration"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">style</span><span class="result">: <a href="CSSStyleDeclaration.html" class="extype" name="org.scalajs.dom.raw.CSSStyleDeclaration">CSSStyleDeclaration</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@style:org.scalajs.dom.raw.CSSStyleDeclaration" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns an object that represents the element's style attribute.</p><div class="fullcomment"><div class="comment cmt"><p>Returns an object that represents the element's style attribute.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#tabIndex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="tabIndex:Int"></a> <a id="tabIndex:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">tabIndex</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@tabIndex:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Gets/sets the tab order of the current element.</p><div class="fullcomment"><div class="comment cmt"><p>Gets/sets the tab order of the current element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#tagName" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="tagName:String"></a> <a id="tagName:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">tagName</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@tagName:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">In XML (and XML-based languages such as XHTML), tagName preserves case.</p><div class="fullcomment"><div class="comment cmt"><p>In XML (and XML-based languages such as XHTML), tagName preserves case. On HTML elements in DOM trees flagged as HTML documents, tagName returns the element name in the uppercase form. The value of tagName is the same as that of nodeName.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#textContent" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="textContent:String"></a> <a id="textContent:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">textContent</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@textContent:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Is a DOMString representing the textual content of an element and all its descendants.</p><div class="fullcomment"><div class="comment cmt"><p>Is a DOMString representing the textual content of an element and all its descendants.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#textTracks" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="textTracks:org.scalajs.dom.raw.TextTrackList"></a> <a id="textTracks:TextTrackList"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">textTracks</span><span class="result">: <a href="TextTrackList.html" class="extype" name="org.scalajs.dom.raw.TextTrackList">TextTrackList</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@textTracks:org.scalajs.dom.raw.TextTrackList" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Represents the list of TextTrack objects contained in the element.</p><div class="fullcomment"><div class="comment cmt"><p>Represents the list of TextTrack objects contained in the element.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#title" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="title:String"></a> <a id="title:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">title</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@title:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Establishes the text to be displayed in a 'tool tip' popup when the mouse is over the displayed node.</p><div class="fullcomment"><div class="comment cmt"><p>Establishes the text to be displayed in a 'tool tip' popup when the mouse is over the displayed node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="scala.scalajs.js.Object#toLocaleString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toLocaleString():String"></a> <a id="toLocaleString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toLocaleString</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@toLocaleString():String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@toString():String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.scalajs.js.Object#valueOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="valueOf():Any"></a> <a id="valueOf():Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">valueOf</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Any">Any</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@valueOf():Any" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLMediaElement#volume" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="volume:Double"></a> <a id="volume:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">volume</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@volume:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The audio volume, from 0.0 (silent) to 1.0 (loudest).</p><div class="fullcomment"><div class="comment cmt"><p>The audio volume, from 0.0 (silent) to 1.0 (loudest).</p><p>MDN </p></div></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@wait():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLMediaElement@wait(x$1:Long):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="org.scalajs.dom.raw.HTMLElement"> <h3>Inherited from <a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.Element"> <h3>Inherited from <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.ParentNode"> <h3>Inherited from <a href="ParentNode.html" class="extype" name="org.scalajs.dom.raw.ParentNode">ParentNode</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.NodeSelector"> <h3>Inherited from <a href="NodeSelector.html" class="extype" name="org.scalajs.dom.raw.NodeSelector">NodeSelector</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.Node"> <h3>Inherited from <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.EventTarget"> <h3>Inherited from <a href="EventTarget.html" class="extype" name="org.scalajs.dom.raw.EventTarget">EventTarget</a></h3> </div><div class="parent" name="scala.scalajs.js.Object"> <h3>Inherited from <span class="extype" name="scala.scalajs.js.Object">Object</span></h3> </div><div class="parent" name="scala.scalajs.js.Any"> <h3>Inherited from <span class="extype" name="scala.scalajs.js.Any">Any</span></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>