Class

org.danielnixon.saferdom.raw

SVGTextElement

Related Doc: package raw

Permalink

abstract class SVGTextElement extends SVGTextPositioningElement with SVGTransformable

The SVGTextElement interface corresponds to the <text> elements.

MDN

Annotations
@RawJSType() @native()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SVGTextElement
  2. SVGTransformable
  3. SVGLocatable
  4. SVGTextPositioningElement
  5. SVGTextContentElement
  6. SVGExternalResourcesRequired
  7. SVGTests
  8. SVGLangSpace
  9. SVGStylable
  10. SVGElement
  11. Element
  12. NonDocumentTypeChildNode
  13. ParentNode
  14. NodeSelector
  15. Node
  16. EventTarget
  17. Object
  18. Any
  19. AnyRef
  20. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SVGTextElement()

    Permalink

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. var accessKey: String

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

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    Any
  8. def attributes: NamedNodeMap

    Permalink

    .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. def childElementCount: Int

    Permalink

    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
  10. def childNodes: NodeList

    Permalink

    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
  11. def children: HTMLCollection

    Permalink

    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
  12. var classList: DOMTokenList

    Permalink

    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
  13. var className: SVGAnimatedString

    Permalink

    Corresponds to attribute class on the given element.

    Corresponds to attribute class on the given element.

    MDN

    Definition Classes
    SVGStylable
  14. def clientHeight: Int

    Permalink

    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
  15. def clientLeft: Int

    Permalink

    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
  16. def clientTop: Int

    Permalink

    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
  17. def clientWidth: Int

    Permalink

    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
  18. def clone(): AnyRef

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

    Permalink

    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
  20. def compareDocumentPosition(other: Node): Int

    Permalink

    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
  21. def dispatchEvent(evt: Event): Boolean

    Permalink

    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
  22. def dx: SVGAnimatedLengthList

    Permalink

    Corresponds to attribute dx on the given element.

    Corresponds to attribute dx on the given element.

    MDN

    Definition Classes
    SVGTextPositioningElement
  23. def dy: SVGAnimatedLengthList

    Permalink

    Corresponds to attribute dy on the given element.

    Corresponds to attribute dy on the given element.

    MDN

    Definition Classes
    SVGTextPositioningElement
  24. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  26. var externalResourcesRequired: SVGAnimatedBoolean

    Permalink
    Definition Classes
    SVGExternalResourcesRequired
  27. var farthestViewportElement: SVGElement

    Permalink
    Definition Classes
    SVGLocatable
  28. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. def getBBox(): SVGRect

    Permalink
    Definition Classes
    SVGLocatable
  30. def getBoundingClientRect(): ClientRect

    Permalink

    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
  31. def getCTM(): SVGMatrix

    Permalink
    Definition Classes
    SVGLocatable
  32. def getCharNumAtPosition(point: SVGPoint): Int

    Permalink
    Definition Classes
    SVGTextContentElement
  33. final def getClass(): Class[_]

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

    Permalink

    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
  35. def getComputedTextLength(): Int

    Permalink
    Definition Classes
    SVGTextContentElement
  36. def getElementsByClassName(classNames: String): NodeList

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

    Permalink

    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
  38. def getElementsByTagNameNS(namespaceURI: String, localName: String): NodeList

    Permalink

    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
  39. def getEndPositionOfChar(charnum: Int): SVGPoint

    Permalink
    Definition Classes
    SVGTextContentElement
  40. def getExtentOfChar(charnum: Int): SVGRect

    Permalink
    Definition Classes
    SVGTextContentElement
  41. def getNumberOfChars(): Int

    Permalink
    Definition Classes
    SVGTextContentElement
  42. def getRotationOfChar(charnum: Int): Int

    Permalink
    Definition Classes
    SVGTextContentElement
  43. def getScreenCTM(): SVGMatrix

    Permalink
    Definition Classes
    SVGLocatable
  44. def getStartPositionOfChar(charnum: Int): SVGPoint

    Permalink
    Definition Classes
    SVGTextContentElement
  45. def getSubStringLength(charnum: Int, nchars: Int): Int

    Permalink
    Definition Classes
    SVGTextContentElement
  46. def getTransformToElement(element: SVGElement): SVGMatrix

    Permalink
    Definition Classes
    SVGLocatable
  47. def hasAttribute(name: String): Boolean

    Permalink

    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
  48. def hasAttributeNS(namespaceURI: String, localName: String): Boolean

    Permalink

    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
  49. def hasAttributes(): Boolean

    Permalink

    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
  50. def hasChildNodes(): Boolean

    Permalink

    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
  51. def hasExtension(extension: String): Boolean

    Permalink

    Returns true if the browser supports the given extension, specified by a URI.

    Returns true if the browser supports the given extension, specified by a URI.

    MDN

    Definition Classes
    SVGTests
  52. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  53. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  54. var id: String

    Permalink
    Definition Classes
    Element
  55. var innerHTML: String

    Permalink

    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 <div>, <span>, or <noembed> 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.

    Definition Classes
    Element
  56. def insertAdjacentHTML(where: String, html: String): Unit

    Permalink

    Supported by FF>8, Opera>7, Chrome>1, IE>4, Safari>4

    Supported by FF>8, Opera>7, Chrome>1, IE>4, Safari>4

    Definition Classes
    Element
  57. def insertBefore(newChild: Node, refChild: Node): Node

    Permalink

    Inserts the first Node given in a parameter immediately before the second, child of this element, Node.

    Inserts the first Node given in a parameter immediately before the second, child of this element, Node.

    MDN

    Definition Classes
    Node
  58. def isDefaultNamespace(namespaceURI: String): Boolean

    Permalink

    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.

    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.

    MDN

    Definition Classes
    Node
  59. def isEqualNode(arg: Node): Boolean

    Permalink

    If #targetElm is first div element in document, "true" will be displayed.

    If #targetElm is first div element in document, "true" will be displayed.

    MDN

    Definition Classes
    Node
  60. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  61. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  62. def isSameNode(other: Node): Boolean

    Permalink

    Tests whether two nodes are the same, that is they reference the same object.

    Tests whether two nodes are the same, that is they reference the same object.

    MDN

    Definition Classes
    Node
  63. def isSupported(feature: String, version: String): Boolean

    Permalink

    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.

    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.

    MDN

    Definition Classes
    Node
  64. def lengthAdjust: SVGAnimatedEnumeration

    Permalink
    Definition Classes
    SVGTextContentElement
  65. def localName: String

    Permalink

    Returns a DOMString representing the local part of the qualified name of an element.

    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.

    MDN

    Definition Classes
    Node
  66. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  67. var nearestViewportElement: SVGElement

    Permalink
    Definition Classes
    SVGLocatable
  68. def nodeName: String

    Permalink

    Returns a DOMString containing the name of the Node.

    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.

    MDN

    Definition Classes
    Node
  69. def nodeType: Int

    Permalink

    The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.

    The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.

    MDN

    Definition Classes
    Node
  70. def normalize(): Unit

    Permalink

    Puts the specified node and all of its subtree into a "normalized" form.

    Puts the specified node and all of its subtree into a "normalized" form. In a normalized subtree, no text nodes in the subtree are empty and there are no adjacent text nodes.

    MDN

    Definition Classes
    Node
  71. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  72. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  73. var onclick: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    SVGElement
  74. var oncopy: Function1[DragEvent, _]

    Permalink
    Definition Classes
    Element
  75. var oncut: Function1[DragEvent, _]

    Permalink
    Definition Classes
    Element
  76. var ondblclick: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    SVGElement
  77. var onfocusin: Function1[FocusEvent, _]

    Permalink
    Definition Classes
    SVGElement
  78. var onfocusout: Function1[FocusEvent, _]

    Permalink
    Definition Classes
    SVGElement
  79. var onload: Function1[Event, _]

    Permalink
    Definition Classes
    SVGElement
  80. var onmousedown: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    SVGElement
  81. var onmousemove: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    SVGElement
  82. var onmouseout: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    SVGElement
  83. var onmouseover: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    SVGElement
  84. var onmouseup: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    SVGElement
  85. var onpaste: Function1[DragEvent, _]

    Permalink
    Definition Classes
    Element
  86. var outerHTML: String

    Permalink

    Gets the markup of the element including its content.

    Gets the markup of the element including its content. When used as a setter, replaces the element with nodes parsed from the given string.

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

    Definition Classes
    Element
  87. def ownerSVGElement: SVGSVGElement

    Permalink

    The nearest ancestor <svg> element.

    The nearest ancestor <svg> element. Null if the given element is the outermost svg element.

    MDN

    Definition Classes
    SVGElement
  88. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  89. def querySelectorAll(selectors: String): NodeList

    Permalink

    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.

    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.

    MDN

    Definition Classes
    NodeSelector
  90. def removeAttribute(name: String): Unit

    Permalink

    removeAttribute removes an attribute from the specified element.

    removeAttribute removes an attribute from the specified element.

    MDN

    Definition Classes
    Element
  91. def removeAttributeNS(namespaceURI: String, localName: String): Unit

    Permalink

    removeAttributeNS removes the specified attribute from an element.

    removeAttributeNS removes the specified attribute from an element.

    MDN

    Definition Classes
    Element
  92. def removeAttributeNode(oldAttr: Attr): Attr

    Permalink

    removeAttributeNode removes the specified attribute from the current element.

    removeAttributeNode removes the specified attribute from the current element.

    MDN

    Definition Classes
    Element
  93. def removeChild(oldChild: Node): Node

    Permalink

    Removes a child node from the current element, which must be a child of the current node.

    Removes a child node from the current element, which must be a child of the current node.

    MDN

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

    Permalink

    Removes the event listener previously registered with EventTarget.addEventListener.

    Removes the event listener previously registered with EventTarget.addEventListener.

    MDN

    Definition Classes
    EventTarget
  95. def replaceChild(newChild: Node, oldChild: Node): Node

    Permalink

    Replaces one child Node of the current one with the second one given in parameter.

    Replaces one child Node of the current one with the second one given in parameter.

    MDN

    Definition Classes
    Node
  96. var requiredExtensions: SVGStringList

    Permalink

    Corresponds to attribute requiredExtensions on the given element.

    Corresponds to attribute requiredExtensions on the given element.

    MDN

    Definition Classes
    SVGTests
  97. var requiredFeatures: SVGStringList

    Permalink

    Corresponds to attribute requiredFeatures on the given element.

    Corresponds to attribute requiredFeatures on the given element.

    MDN

    Definition Classes
    SVGTests
  98. def rotate: SVGAnimatedNumberList

    Permalink

    Corresponds to attribute rotate on the given element.

    Corresponds to attribute rotate on the given element.

    MDN

    Definition Classes
    SVGTextPositioningElement
  99. def scrollHeight: Int

    Permalink

    Height of the scroll view of an element; it includes the element padding but not its margin.

    Height of the scroll view of an element; it includes the element padding but not its margin.

    MDN

    Definition Classes
    Element
  100. def scrollIntoView(top: Boolean = js.native): Unit

    Permalink
    Definition Classes
    Element
  101. var scrollLeft: Double

    Permalink

    scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.

    scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.

    MDN

    Definition Classes
    Element
  102. var scrollTop: Double

    Permalink

    scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.

    scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.

    MDN

    Definition Classes
    Element
  103. def scrollWidth: Int

    Permalink

    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.

    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.

    MDN

    Definition Classes
    Element
  104. def selectSubString(charnum: Int, nchars: Int): Unit

    Permalink
    Definition Classes
    SVGTextContentElement
  105. def setAttribute(name: String, value: String): Unit

    Permalink

    Adds a new attribute or changes the value of an existing attribute on the specified element.

    Adds a new attribute or changes the value of an existing attribute on the specified element.

    MSN

    Definition Classes
    Element
  106. def setAttributeNS(namespaceURI: String, qualifiedName: String, value: String): Unit

    Permalink

    setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.

    setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.

    MDN

    Definition Classes
    Element
  107. var style: CSSStyleDeclaration

    Permalink

    Corresponds to attribute style on the given element.

    Corresponds to attribute style on the given element.

    MDN

    Definition Classes
    SVGStylable
  108. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  109. var systemLanguage: SVGStringList

    Permalink

    Corresponds to attribute systemLanguage on the given element.

    Corresponds to attribute systemLanguage on the given element.

    MDN

    Definition Classes
    SVGTests
  110. def tagName: String

    Permalink

    In XML (and XML-based languages such as XHTML), tagName preserves case.

    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.

    MDN

    Definition Classes
    Element
  111. var textContent: String

    Permalink

    Is a DOMString representing the textual content of an element and all its descendants.

    Is a DOMString representing the textual content of an element and all its descendants.

    MDN

    Definition Classes
    Node
  112. def textLength: SVGAnimatedLength

    Permalink
    Definition Classes
    SVGTextContentElement
  113. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  114. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  115. var transform: SVGAnimatedTransformList

    Permalink

    Corresponds to attribute transform on the given element.

    Corresponds to attribute transform on the given element.

    MDN

    Definition Classes
    SVGTransformable
  116. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  117. def viewportElement: SVGElement

    Permalink

    The element which established the current viewport.

    The element which established the current viewport. Often, the nearest ancestor <svg> element. Null if the given element is the outermost svg element.

    MDN

    Definition Classes
    SVGElement
  118. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  119. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  120. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  121. def x: SVGAnimatedLengthList

    Permalink

    Corresponds to attribute x on the given element.

    Corresponds to attribute x on the given element.

    MDN

    Definition Classes
    SVGTextPositioningElement
  122. var xmlbase: String

    Permalink

    Corresponds to attribute xml:base on the given element.

    Corresponds to attribute xml:base on the given element.

    MDN

    Definition Classes
    SVGElement
  123. var xmllang: String

    Permalink
    Definition Classes
    SVGLangSpace
  124. var xmlspace: String

    Permalink
    Definition Classes
    SVGLangSpace
  125. def y: SVGAnimatedLengthList

    Permalink

    Corresponds to attribute y on the given element.

    Corresponds to attribute y on the given element.

    MDN

    Definition Classes
    SVGTextPositioningElement

Inherited from SVGTransformable

Inherited from SVGLocatable

Inherited from SVGTextPositioningElement

Inherited from SVGTextContentElement

Inherited from SVGTests

Inherited from SVGLangSpace

Inherited from SVGStylable

Inherited from SVGElement

Inherited from Element

Inherited from NonDocumentTypeChildNode

Inherited from ParentNode

Inherited from NodeSelector

Inherited from Node

Inherited from EventTarget

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped