ShadowRoot class - dart:html library (original) (raw)
Inheritance
- Object
- EventTarget
- Node
- DocumentFragment
- ShadowRoot
Implemented types
Annotations
- @SupportedBrowser(SupportedBrowser.CHROME, '26')
- @Native("ShadowRoot")
Properties
no setteroverride
getter/setter pair
no setterinherited
childNodes → List<Node>
A list of this node's children.
no setterinherited
getter/setter pairinherited
no setter
firstChild → Node?
The first child of this node.
no setterinherited
no setteroverride
The hash code for this object.
no setterinherited
no setter
getter/setter pairoverride
isConnected → bool?
no setterinherited
The last child of this node.
no setterinherited
no setter
The next sibling node.
no setterinherited
The name of this node.
no setterinherited
A modifiable list of this node's children.
getter/setter pairinherited
The type of node.
no setterinherited
The value of this node.
no setterinherited
no setter
This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.
no setterinherited
The document this node belongs to.
no setterinherited
The parent element of this node.
no setterinherited
parentNode → Node?
The parent node of this node.
no setterinherited
no setteroverride
previousNode → Node?
The previous sibling node.
no setterinherited
getter/setter pair
A representation of the runtime type of the object.
no setterinherited
styleSheets → List<StyleSheet>?
no setteroverride
All text within this node and its descendants.
getter/setter pairinherited
Methods
addEventListener(String type, EventListener? listener, [bool? useCapture])→ void
inherited
Adds a node to the end of the child nodes list of this node.
inherited
appendHtml(String text, {NodeValidator? validator, NodeTreeSanitizer? treeSanitizer})→ void
Parses the specified text as HTML and adds the resulting node after the last child of this document fragment.
inherited
appendText(String text)→ void
Adds the specified text as a text node after the last child of this document fragment.
inherited
Returns a copy of this node.
inherited
Returns true if this node contains the specified node.
inherited
dispatchEvent(Event event)→ bool
inherited
elementFromPoint(int x, int y)→ Element?
override
elementsFromPoint(int x, int y)→ List<Element>
override
getElementById(String elementId)→ Element?
inherited
getRootNode([Map? options])→ Node
inherited
override
Returns true if this node has any children.
inherited
insertAllBefore(Iterable<Node> newNodes, Node child)→ void
Inserts all of the nodes into this node directly before child.
inherited
insertBefore(Node node, Node? child)→ Node
Inserts the given node into this node directly before child. If child is null
, then the given node is inserted at the end of this node's child nodes.
inherited
noSuchMethod(Invocation invocation)→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
querySelector(String selectors)→ Element?
Finds the first descendant element of this document fragment that matches the specified group of selectors.
inherited
querySelectorAll<T extends Element>(String selectors)→ ElementList<T>
Finds all descendant elements of this document fragment that match the specified group of selectors.
inherited
remove()→ void
Removes this node from the DOM.
inherited
removeEventListener(String type, EventListener? listener, [bool? useCapture])→ void
inherited
replaceWith(Node otherNode)→ Node
Replaces this node with another node.
inherited
setInnerHtml(String? html, {NodeValidator? validator, NodeTreeSanitizer? treeSanitizer})→ void
inherited
Print out a String representation of this Node.
inherited
Operators
operator ==(Object other)→ bool
The equality operator.
inherited
Static Properties
no setter