abstract class SVGFEDiffuseLightingElement extends SVGElement with SVGFilterPrimitiveStandardAttributes
- Annotations
- @RawJSType() @native()
- Alphabetic
- By Inheritance
- SVGFEDiffuseLightingElement
- SVGFilterPrimitiveStandardAttributes
- SVGStylable
- SVGElement
- Element
- NonDocumentTypeChildNode
- ParentNode
- NodeSelector
- Node
- EventTarget
- Object
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SVGFEDiffuseLightingElement()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
var
accessKey: String
- Definition Classes
- Element
-
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
-
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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
-
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
-
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
-
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
-
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
-
val
className: SVGAnimatedString
Corresponds to attribute class on the given element.
Corresponds to attribute class on the given element.
MDN
- Definition Classes
- SVGStylable
-
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
-
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
-
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
-
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
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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
-
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
- def diffuseConstant: SVGAnimatedNumber
-
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
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
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
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
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
-
def
getElementsByClassName(classNames: String): NodeList
- Definition Classes
- Element
-
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
-
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
-
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
-
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
-
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
-
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
-
def
hasOwnProperty(v: String): Boolean
- Definition Classes
- Object
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
def
height: SVGAnimatedLength
- Definition Classes
- SVGFilterPrimitiveStandardAttributes
-
var
id: String
- Definition Classes
- Element
- def in1: SVGAnimatedString
-
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 <div>, <span>, or <noembed> node has a child text node that includes the characters (&), (<), or (>), innerHTML returns these characters as &, < and > respectively. Use Node.textContent to get a correct copy of these text nodes' contents.
- Definition Classes
- Element
-
def
insertAdjacentHTML(where: String, html: String): Unit
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
-
def
insertBefore(newChild: Node, refChild: Node): Node
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
-
def
isDefaultNamespace(namespaceURI: String): Boolean
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
-
def
isEqualNode(arg: Node): Boolean
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
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isPrototypeOf(v: Object): Boolean
- Definition Classes
- Object
-
def
isSameNode(other: Node): Boolean
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
-
def
isSupported(feature: String, version: String): Boolean
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
- def kernelUnitLengthX: SVGAnimatedNumber
- def kernelUnitLengthY: SVGAnimatedNumber
-
def
localName: String
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
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
nodeName: String
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
-
def
nodeType: Int
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
-
def
normalize(): Unit
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
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
var
onclick: Function1[MouseEvent, _]
- Definition Classes
- SVGElement
-
var
oncopy: Function1[DragEvent, _]
- Definition Classes
- Element
-
var
oncut: Function1[DragEvent, _]
- Definition Classes
- Element
-
var
ondblclick: Function1[MouseEvent, _]
- Definition Classes
- SVGElement
-
var
onfocusin: Function1[FocusEvent, _]
- Definition Classes
- SVGElement
-
var
onfocusout: Function1[FocusEvent, _]
- Definition Classes
- SVGElement
-
var
onload: Function1[Event, _]
- Definition Classes
- SVGElement
-
var
onmousedown: Function1[MouseEvent, _]
- Definition Classes
- SVGElement
-
var
onmousemove: Function1[MouseEvent, _]
- Definition Classes
- SVGElement
-
var
onmouseout: Function1[MouseEvent, _]
- Definition Classes
- SVGElement
-
var
onmouseover: Function1[MouseEvent, _]
- Definition Classes
- SVGElement
-
var
onmouseup: Function1[MouseEvent, _]
- Definition Classes
- SVGElement
-
var
onpaste: Function1[DragEvent, _]
- Definition Classes
- Element
-
var
outerHTML: String
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
-
def
ownerSVGElement: SVGSVGElement
The nearest ancestor <svg> element.
The nearest ancestor <svg> element. Null if the given element is the outermost svg element.
MDN
- Definition Classes
- SVGElement
-
var
prefix: String
Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.
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.
MDN
- Definition Classes
- Node
-
def
propertyIsEnumerable(v: String): Boolean
- Definition Classes
- Object
-
def
querySelectorAll(selectors: String): NodeList
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
-
def
removeAttribute(name: String): Unit
removeAttribute removes an attribute from the specified element.
removeAttribute removes an attribute from the specified element.
MDN
- Definition Classes
- Element
-
def
removeAttributeNS(namespaceURI: String, localName: String): Unit
removeAttributeNS removes the specified attribute from an element.
removeAttributeNS removes the specified attribute from an element.
MDN
- Definition Classes
- Element
-
def
removeAttributeNode(oldAttr: Attr): Attr
removeAttributeNode removes the specified attribute from the current element.
removeAttributeNode removes the specified attribute from the current element.
MDN
- Definition Classes
- Element
-
def
removeChild(oldChild: Node): Node
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
-
def
removeEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean = js.native): Unit
Removes the event listener previously registered with EventTarget.addEventListener.
Removes the event listener previously registered with EventTarget.addEventListener.
MDN
- Definition Classes
- EventTarget
-
def
replaceChild(newChild: Node, oldChild: Node): Node
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
-
def
result: SVGAnimatedString
- Definition Classes
- SVGFilterPrimitiveStandardAttributes
-
def
scrollHeight: Int
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
-
def
scrollIntoView(top: Boolean = js.native): Unit
- Definition Classes
- Element
-
var
scrollLeft: Double
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
-
var
scrollTop: Double
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
-
def
scrollWidth: Int
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
-
def
setAttribute(name: String, value: String): Unit
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
-
def
setAttributeNS(namespaceURI: String, qualifiedName: String, value: String): Unit
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
-
val
style: CSSStyleDeclaration
Corresponds to attribute style on the given element.
Corresponds to attribute style on the given element.
MDN
- Definition Classes
- SVGStylable
- def surfaceScale: SVGAnimatedNumber
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tagName: String
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
-
var
textContent: String
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
-
def
toLocaleString(): String
- Definition Classes
- Object
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
valueOf(): Any
- Definition Classes
- Object
-
def
viewportElement: SVGElement
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
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
width: SVGAnimatedLength
- Definition Classes
- SVGFilterPrimitiveStandardAttributes
-
def
x: SVGAnimatedLength
- Definition Classes
- SVGFilterPrimitiveStandardAttributes
-
var
xmlbase: String
Corresponds to attribute xml:base on the given element.
Corresponds to attribute xml:base on the given element.
MDN
- Definition Classes
- SVGElement
-
def
y: SVGAnimatedLength
- Definition Classes
- SVGFilterPrimitiveStandardAttributes