RangeInputElementBase abstract class

Base interface for all input element types which involve ranges.

Implements
Implemented by

Constructors

RangeInputElementBase()

Properties

listElement
@DomName('HTMLInputElement.list'), read-only
maxString
@DomName('HTMLInputElement.max'), read / write
minString
@DomName('HTMLInputElement.min'), read / write
stepString
@DomName('HTMLInputElement.step'), read / write
valueAsNumbernum
@DomName('HTMLInputElement.valueAsNumber'), read / write
assignedSlotSlotElement
@DocsEditable(), @DomName('Element.assignedSlot'), @Experimental(), read-only, inherited
attributesMap<String, String>
read / write, inherited

All attributes on this element.

autofocusbool
@DomName('HTMLInputElement.autofocus'), read / write, inherited
baseUriString
@DocsEditable(), @DomName('Node.baseURI'), read-only, inherited
borderEdgeCssRect
@Experimental(), read-only, inherited

Access the dimensions and position of this element's content + padding + border box.

childNodesList<Node>
@DocsEditable(), @DomName('Node.childNodes'), read-only, inherited

A list of this node's children.

childrenList<Element>
read / write, inherited

List of the direct children of this element.

classesCssClassSet
read / write, inherited

The set of CSS classes applied to this element.

classNameString
@DocsEditable(), @DomName('Element.className'), read / write, inherited
clientRectangle
read-only, inherited

Gets the position of this element relative to the client area of the page.

clientHeightint
@DocsEditable(), @DomName('Element.clientHeight'), read-only, inherited
clientLeftint
@DocsEditable(), @DomName('Element.clientLeft'), read-only, inherited
clientTopint
@DocsEditable(), @DomName('Element.clientTop'), read-only, inherited
clientWidthint
@DocsEditable(), @DomName('Element.clientWidth'), read-only, inherited
computedNameString
@DocsEditable(), @DomName('Element.computedName'), @Experimental(), read-only, inherited
computedRoleString
@DocsEditable(), @DomName('Element.computedRole'), @Experimental(), read-only, inherited
contentEdgeCssRect
@Experimental(), read-only, inherited

Access this element's content position.

contentEditableString
read / write, inherited
contextMenuMenuElement
read / write, inherited
datasetMap<String, String>
read / write, inherited

Allows access to all custom data attributes (data-*) set on this element.

dirString
read / write, inherited
disabledbool
@DomName('HTMLInputElement.disabled'), read / write, inherited
documentOffsetPoint
@Experimental(), read-only, inherited

Provides the coordinates of the element relative to the top of the document.

draggablebool
read / write, inherited
dropzoneString
read / write, inherited
firstChildNode
@DocsEditable(), @DomName('Node.firstChild'), read-only, inherited

The first child of this node.

hashCodeint
read-only, inherited

The hash code for this object.

hiddenbool
read / write, inherited
idString
@DocsEditable(), @DomName('Element.id'), read / write, inherited
incrementalbool
@DomName('HTMLInputElement.incremental'), read / write, inherited
indeterminatebool
@DomName('HTMLInputElement.indeterminate'), read / write, inherited
innerHtmlString
read / write, inherited

Parses the HTML fragment and sets it as the contents of this element.

isContentEditablebool
read-only, inherited
labelsList<Node>
@DomName('HTMLInputElement.labels'), read-only, inherited
langString
read / write, inherited
lastChildNode
@DocsEditable(), @DomName('Node.lastChild'), read-only, inherited

The last child of this node.

localNameString
@DocsEditable(), @DomName('Element.localName'), read-only, inherited
marginEdgeCssRect
@Experimental(), read-only, inherited

Access the dimensions and position of this element's content + padding + border + margin box.

nameString
@DomName('HTMLInputElement.name'), read / write, inherited
namespaceUriString
@DomName('Element.namespaceUri'), read-only, inherited

A URI that identifies the XML namespace of this element.

nextElementSiblingElement
@DocsEditable(), @DomName('Element.nextElementSibling'), read-only, inherited
nextNodeNode
@DocsEditable(), @DomName('Node.nextSibling'), read-only, inherited

The next sibling node.

nodeNameString
@DocsEditable(), @DomName('Node.nodeName'), read-only, inherited

The name of this node.

nodesList<Node>
read / write, inherited

A modifiable list of this node's children.

nodeTypeint
@DocsEditable(), @DomName('Node.nodeType'), read-only, inherited

The type of node.

nodeValueString
@DocsEditable(), @DomName('Node.nodeValue'), read-only, inherited

The value of this node.

offsetRectangle
read-only, inherited

Gets the offset of this element relative to its offsetParent.

offsetHeightint
@DocsEditable(), @DomName('Element.offsetHeight'), read-only, inherited
offsetLeftint
@DocsEditable(), @DomName('Element.offsetLeft'), read-only, inherited
offsetParentElement
@DocsEditable(), @DomName('Element.offsetParent'), read-only, inherited
offsetTopint
@DocsEditable(), @DomName('Element.offsetTop'), read-only, inherited
offsetWidthint
@DocsEditable(), @DomName('Element.offsetWidth'), read-only, inherited
onElementEvents
read-only, inherited

This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.

onAbortElementStream<Event>
@DocsEditable(), @DomName('Element.onabort'), read-only, inherited

Stream of abort events handled by this Element.

onBeforeCopyElementStream<Event>
@DocsEditable(), @DomName('Element.onbeforecopy'), read-only, inherited

Stream of beforecopy events handled by this Element.

onBeforeCutElementStream<Event>
@DocsEditable(), @DomName('Element.onbeforecut'), read-only, inherited

Stream of beforecut events handled by this Element.

onBeforePasteElementStream<Event>
@DocsEditable(), @DomName('Element.onbeforepaste'), read-only, inherited

Stream of beforepaste events handled by this Element.

onBlurElementStream<Event>
@DocsEditable(), @DomName('Element.onblur'), read-only, inherited

Stream of blur events handled by this Element.

onCanPlayElementStream<Event>
@DocsEditable(), @DomName('Element.oncanplay'), @Experimental(), read-only, inherited
onCanPlayThroughElementStream<Event>
@DocsEditable(), @DomName('Element.oncanplaythrough'), @Experimental(), read-only, inherited
onChangeElementStream<Event>
@DocsEditable(), @DomName('Element.onchange'), read-only, inherited

Stream of change events handled by this Element.

onClickElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onclick'), read-only, inherited

Stream of click events handled by this Element.

onContextMenuElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.oncontextmenu'), read-only, inherited

Stream of contextmenu events handled by this Element.

onCopyElementStream<ClipboardEvent>
@DocsEditable(), @DomName('Element.oncopy'), read-only, inherited

Stream of copy events handled by this Element.

onCutElementStream<ClipboardEvent>
@DocsEditable(), @DomName('Element.oncut'), read-only, inherited

Stream of cut events handled by this Element.

onDoubleClickElementStream<Event>
@DocsEditable(), @DomName('Element.ondblclick'), read-only, inherited

Stream of doubleclick events handled by this Element.

onDragElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.ondrag'), read-only, inherited

A stream of drag events fired when this element currently being dragged.

onDragEndElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.ondragend'), read-only, inherited

A stream of dragend events fired when this element completes a drag operation.

onDragEnterElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.ondragenter'), read-only, inherited

A stream of dragenter events fired when a dragged object is first dragged over this element.

onDragLeaveElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.ondragleave'), read-only, inherited

A stream of dragleave events fired when an object being dragged over this element leaves this element's target area.

onDragOverElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.ondragover'), read-only, inherited

A stream of dragover events fired when a dragged object is currently being dragged over this element.

onDragStartElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.ondragstart'), read-only, inherited

A stream of dragstart events fired when this element starts being dragged.

onDropElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.ondrop'), read-only, inherited

A stream of drop events fired when a dragged object is dropped on this element.

onDurationChangeElementStream<Event>
@DocsEditable(), @DomName('Element.ondurationchange'), @Experimental(), read-only, inherited
onEmptiedElementStream<Event>
@DocsEditable(), @DomName('Element.onemptied'), @Experimental(), read-only, inherited
onEndedElementStream<Event>
@DocsEditable(), @DomName('Element.onended'), @Experimental(), read-only, inherited
onErrorElementStream<Event>
@DocsEditable(), @DomName('Element.onerror'), read-only, inherited

Stream of error events handled by this Element.

onFocusElementStream<Event>
@DocsEditable(), @DomName('Element.onfocus'), read-only, inherited

Stream of focus events handled by this Element.

onFullscreenChangeElementStream<Event>
@DocsEditable(), @DomName('Element.onwebkitfullscreenchange'), @Experimental(), read-only, inherited

Stream of fullscreenchange events handled by this Element.

onFullscreenErrorElementStream<Event>
@DocsEditable(), @DomName('Element.onwebkitfullscreenerror'), @Experimental(), read-only, inherited

Stream of fullscreenerror events handled by this Element.

onInputElementStream<Event>
@DocsEditable(), @DomName('Element.oninput'), read-only, inherited

Stream of input events handled by this Element.

onInvalidElementStream<Event>
@DocsEditable(), @DomName('Element.oninvalid'), read-only, inherited

Stream of invalid events handled by this Element.

onKeyDownElementStream<KeyboardEvent>
@DocsEditable(), @DomName('Element.onkeydown'), read-only, inherited

Stream of keydown events handled by this Element.

onKeyPressElementStream<KeyboardEvent>
@DocsEditable(), @DomName('Element.onkeypress'), read-only, inherited

Stream of keypress events handled by this Element.

onKeyUpElementStream<KeyboardEvent>
@DocsEditable(), @DomName('Element.onkeyup'), read-only, inherited

Stream of keyup events handled by this Element.

onLoadElementStream<Event>
@DocsEditable(), @DomName('Element.onload'), read-only, inherited

Stream of load events handled by this Element.

onLoadedDataElementStream<Event>
@DocsEditable(), @DomName('Element.onloadeddata'), @Experimental(), read-only, inherited
onLoadedMetadataElementStream<Event>
@DocsEditable(), @DomName('Element.onloadedmetadata'), @Experimental(), read-only, inherited
onMouseDownElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onmousedown'), read-only, inherited

Stream of mousedown events handled by this Element.

onMouseEnterElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onmouseenter'), @Experimental(), read-only, inherited

Stream of mouseenter events handled by this Element.

onMouseLeaveElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onmouseleave'), @Experimental(), read-only, inherited

Stream of mouseleave events handled by this Element.

onMouseMoveElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onmousemove'), read-only, inherited

Stream of mousemove events handled by this Element.

onMouseOutElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onmouseout'), read-only, inherited

Stream of mouseout events handled by this Element.

onMouseOverElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onmouseover'), read-only, inherited

Stream of mouseover events handled by this Element.

onMouseUpElementStream<MouseEvent>
@DocsEditable(), @DomName('Element.onmouseup'), read-only, inherited

Stream of mouseup events handled by this Element.

onMouseWheelElementStream<WheelEvent>
@DocsEditable(), @DomName('Element.onmousewheel'), @Experimental(), read-only, inherited

Stream of mousewheel events handled by this Element.

onPasteElementStream<ClipboardEvent>
@DocsEditable(), @DomName('Element.onpaste'), read-only, inherited

Stream of paste events handled by this Element.

onPauseElementStream<Event>
@DocsEditable(), @DomName('Element.onpause'), @Experimental(), read-only, inherited
onPlayElementStream<Event>
@DocsEditable(), @DomName('Element.onplay'), @Experimental(), read-only, inherited
onPlayingElementStream<Event>
@DocsEditable(), @DomName('Element.onplaying'), @Experimental(), read-only, inherited
onRateChangeElementStream<Event>
@DocsEditable(), @DomName('Element.onratechange'), @Experimental(), read-only, inherited
onResetElementStream<Event>
@DocsEditable(), @DomName('Element.onreset'), read-only, inherited

Stream of reset events handled by this Element.

onResizeElementStream<Event>
@DocsEditable(), @DomName('Element.onresize'), @Experimental(), read-only, inherited
onScrollElementStream<Event>
@DocsEditable(), @DomName('Element.onscroll'), read-only, inherited

Stream of scroll events handled by this Element.

onSearchElementStream<Event>
@DocsEditable(), @DomName('Element.onsearch'), @Experimental(), read-only, inherited

Stream of search events handled by this Element.

onSeekedElementStream<Event>
@DocsEditable(), @DomName('Element.onseeked'), @Experimental(), read-only, inherited
onSeekingElementStream<Event>
@DocsEditable(), @DomName('Element.onseeking'), @Experimental(), read-only, inherited
onSelectElementStream<Event>
@DocsEditable(), @DomName('Element.onselect'), read-only, inherited

Stream of select events handled by this Element.

onSelectStartElementStream<Event>
@DocsEditable(), @DomName('Element.onselectstart'), @Experimental(), read-only, inherited

Stream of selectstart events handled by this Element.

onStalledElementStream<Event>
@DocsEditable(), @DomName('Element.onstalled'), @Experimental(), read-only, inherited
onSubmitElementStream<Event>
@DocsEditable(), @DomName('Element.onsubmit'), read-only, inherited

Stream of submit events handled by this Element.

onSuspendElementStream<Event>
@DocsEditable(), @DomName('Element.onsuspend'), @Experimental(), read-only, inherited
onTimeUpdateElementStream<Event>
@DocsEditable(), @DomName('Element.ontimeupdate'), @Experimental(), read-only, inherited
onTouchCancelElementStream<TouchEvent>
@DocsEditable(), @DomName('Element.ontouchcancel'), @Experimental(), read-only, inherited

Stream of touchcancel events handled by this Element.

onTouchEndElementStream<TouchEvent>
@DocsEditable(), @DomName('Element.ontouchend'), @Experimental(), read-only, inherited

Stream of touchend events handled by this Element.

onTouchEnterElementStream<TouchEvent>
@DocsEditable(), @DomName('Element.ontouchenter'), @Experimental(), read-only, inherited

Stream of touchenter events handled by this Element.

onTouchLeaveElementStream<TouchEvent>
@DocsEditable(), @DomName('Element.ontouchleave'), @Experimental(), read-only, inherited

Stream of touchleave events handled by this Element.

onTouchMoveElementStream<TouchEvent>
@DocsEditable(), @DomName('Element.ontouchmove'), @Experimental(), read-only, inherited

Stream of touchmove events handled by this Element.

onTouchStartElementStream<TouchEvent>
@DocsEditable(), @DomName('Element.ontouchstart'), @Experimental(), read-only, inherited

Stream of touchstart events handled by this Element.

onTransitionEndElementStream<TransitionEvent>
@DocsEditable(), @DomName('Element.ontransitionend'), @SupportedBrowser(SupportedBrowser.CHROME), @SupportedBrowser(SupportedBrowser.FIREFOX), @SupportedBrowser(SupportedBrowser.IE, '10'), @SupportedBrowser(SupportedBrowser.SAFARI), read-only, inherited

Stream of transitionend events handled by this Element.

onVolumeChangeElementStream<Event>
@DocsEditable(), @DomName('Element.onvolumechange'), @Experimental(), read-only, inherited
onWaitingElementStream<Event>
@DocsEditable(), @DomName('Element.onwaiting'), @Experimental(), read-only, inherited
outerHtmlString
@DocsEditable(), @DomName('Element.outerHTML'), read-only, inherited
ownerDocumentDocument
@DocsEditable(), @DomName('Node.ownerDocument'), read-only, inherited

The document this node belongs to.

paddingEdgeCssRect
@Experimental(), read-only, inherited

Access the dimensions and position of this element's content + padding box.

parentElement
@DocsEditable(), @DomName('Node.parentElement'), read-only, inherited

The parent element of this node.

parentNodeNode
@DocsEditable(), @DomName('Node.parentNode'), read-only, inherited

The parent node of this node.

previousElementSiblingElement
@DocsEditable(), @DomName('Element.previousElementSibling'), read-only, inherited
previousNodeNode
@DocsEditable(), @DomName('Node.previousSibling'), read-only, inherited

The previous sibling node.

runtimeTypeType
read-only, inherited

A representation of the runtime type of the object.

scrollHeightint
@DocsEditable(), @DomName('Element.scrollHeight'), read-only, inherited
scrollLeftint
@DocsEditable(), @DomName('Element.scrollLeft'), read / write, inherited
scrollTopint
@DocsEditable(), @DomName('Element.scrollTop'), read / write, inherited
scrollWidthint
@DocsEditable(), @DomName('Element.scrollWidth'), read-only, inherited
shadowRootShadowRoot
@DocsEditable(), @DomName('Element.shadowRoot'), @Experimental(), read-only, inherited
slotString
@DocsEditable(), @DomName('Element.slot'), @Experimental(), read / write, inherited
spellcheckbool
read / write, inherited
styleCssStyleDeclaration
read-only, inherited
tabIndexint
read / write, inherited
tagNameString
@DocsEditable(), @DomName('Element.tagName'), read-only, inherited
textString
@DocsEditable(), @DomName('Node.textContent'), read / write, inherited

All text within this node and its descendents.

titleString
read / write, inherited
translatebool
read / write, inherited
treeRootNode
@DocsEditable(), @DomName('Node.treeRoot'), @Experimental(), read-only, inherited
validationMessageString
@DomName('HTMLInputElement.validationMessage'), read-only, inherited
validityValidityState
@DomName('HTMLInputElement.validity'), read-only, inherited
valueString
@DomName('HTMLInputElement.value'), read / write, inherited
willValidatebool
@DomName('HTMLInputElement.willValidate'), read-only, inherited
xtag → dynamic
read / write, inherited

Experimental support for web components. This field stores a reference to the component implementation. It was inspired by Mozilla's x-tags project. Please note: in the future it may be possible to extend Element from your class, in which case this field will be deprecated.

Operators

operator ==(other) → bool
inherited

The equality operator.

Methods

stepDown([int n ]) → void
@DomName('HTMLInputElement.stepDown')
stepUp([int n ]) → void
@DomName('HTMLInputElement.stepUp')
addEventListener(String type, EventListener listener, [ bool useCapture ]) → void
inherited
animate(Iterable<Map<String, dynamic>> frames, [ timing ]) → Animation
@Experimental(), @SupportedBrowser(SupportedBrowser.CHROME, '36'), inherited

Creates a new AnimationEffect object whose target element is the object on which the method is called, and calls the play() method of the AnimationTimeline object of the document timeline of the node document of the element, passing the newly created AnimationEffect as the argument to the method. Returns an Animation for the effect.

append(Node node) → Node
@DocsEditable(), @DomName('Node.appendChild'), inherited

Adds a node to the end of the child nodes list of this node.

appendHtml(String text, { NodeValidator validator, NodeTreeSanitizer treeSanitizer }) → void
inherited

Parses the specified text as HTML and adds the resulting node after the last child of this element.

appendText(String text) → void
inherited

Adds the specified text after the last child of this element.

attached() → void
@Experimental(), inherited

Called by the DOM when this element has been inserted into the live document.

attachShadow(Map shadowRootInitDict) → ShadowRoot
@DocsEditable(), @DomName('Element.attachShadow'), @Experimental(), inherited
attributeChanged(String name, String oldValue, String newValue) → void
inherited

Called by the DOM whenever an attribute on this has been changed.

blur() → void
inherited
checkValidity() → bool
@DomName('HTMLInputElement.checkValidity'), inherited
click() → void
inherited
clone(bool deep) → Node
@DocsEditable(), @DomName('Node.cloneNode'), inherited

Returns a copy of this node.

closest(String selectors) → Element
@DocsEditable(), @DomName('Element.closest'), @Experimental(), inherited
contains(Node other) → bool
@DocsEditable(), @DomName('Node.contains'), inherited

Returns true if this node contains the specified node.

createFragment(String html, { NodeValidator validator, NodeTreeSanitizer treeSanitizer }) → DocumentFragment
inherited

Create a DocumentFragment from the HTML fragment and ensure that it follows the sanitization rules specified by the validator or treeSanitizer.

createShadowRoot() → ShadowRoot
@DocsEditable(), @DomName('Element.createShadowRoot'), @Experimental(), @SupportedBrowser(SupportedBrowser.CHROME, '25'), inherited
detached() → void
@Experimental(), inherited

Called by the DOM when this element has been removed from the live document.

dispatchEvent(Event event) → bool
@DocsEditable(), @DomName('EventTarget.dispatchEvent'), inherited
enteredView() → void
@Experimental(), inherited

Deprecated*: override attached instead.

focus() → void
inherited
getAnimations() → List<Animation>
@DocsEditable(), @DomName('Element.getAnimations'), @Experimental(), inherited
getAttribute(String name) → String
@DocsEditable(), @DomName('Element.getAttribute'), @Experimental(), inherited
getAttributeNS(String namespaceURI, String localName) → String
@DocsEditable(), @DomName('Element.getAttributeNS'), @Experimental(), inherited
getBoundingClientRect() → Rectangle
@DocsEditable(), @DomName('Element.getBoundingClientRect'), inherited

Returns the smallest bounding rectangle that encompasses this element's padding, scrollbar, and border.

getClientRects() → List<Rectangle>
@DocsEditable(), @DomName('Element.getClientRects'), inherited

Returns a list of bounding rectangles for each box associated with this element.

getComputedStyle([String pseudoElement ]) → CssStyleDeclaration
inherited

The set of all CSS values applied to this element, including inherited and default values.

getDestinationInsertionPoints() → List<Node>
@DocsEditable(), @DomName('Element.getDestinationInsertionPoints'), @Experimental(), inherited

Returns a list of shadow DOM insertion points to which this element is distributed.

getElementsByClassName(String classNames) → List<Node>
@DocsEditable(), @DomName('Element.getElementsByClassName'), inherited

Returns a list of nodes with the given class name inside this element.

getNamespacedAttributes(String namespace) → Map<String, String>
inherited

Gets a map for manipulating the attributes of a particular namespace.

hasChildNodes() → bool
@DocsEditable(), @DomName('Node.hasChildNodes'), inherited

Returns true if this node has any children.

insertAdjacentElement(String where, Element element) → Element
@DocsEditable(), @DomName('Element.insertAdjacentElement'), @Experimental(), inherited
insertAdjacentHtml(String where, String html, { NodeValidator validator, NodeTreeSanitizer treeSanitizer }) → void
inherited

Parses text as an HTML fragment and inserts it into the DOM at the specified location.

insertAdjacentText(String where, String text) → void
@DocsEditable(), @DomName('Element.insertAdjacentText'), @Experimental(), inherited
insertAllBefore(Iterable<Node> newNodes, Node refChild) → Node
inherited

Inserts all of the nodes into this node directly before refChild.

insertBefore(Node node, Node child) → Node
@DocsEditable(), @DomName('Node.insertBefore'), inherited

Inserts all of the nodes into this node directly before refChild.

leftView() → void
@Experimental(), inherited

Deprecated*: override detached instead.

matches(String selectors) → bool
@DocsEditable(), @DomName('Element.matches'), @Experimental(), inherited
matchesWithAncestors(String selectors) → bool
@Experimental(), inherited

Checks if this element or any of its parents match the CSS selectors.

noSuchMethod(Invocation invocation) → dynamic
inherited

Invoked when a non-existent method or property is accessed.

offsetTo(Element parent) → Point
@Experimental(), inherited

Provides the offset of this element's borderEdge relative to the specified parent.

query(String relativeSelectors) → Element
@DomName('Element.querySelector'), @Experimental(), inherited

Alias for querySelector. Note this function is deprecated because its semantics will be changing in the future.

queryAll(String relativeSelectors) → ElementList<Element>
@DomName('Element.querySelectorAll'), @Experimental(), inherited

Alias for querySelectorAll. Note this function is deprecated because its semantics will be changing in the future.

querySelector(String selectors) → Element
@DocsEditable(), @DomName('Element.querySelector'), inherited

Finds the first descendant element of this element that matches the specified group of selectors.

querySelectorAll(String selectors) → ElementList<Element>
@DomName('Element.querySelectorAll'), inherited

Finds all descendent elements of this element that match the specified group of selectors.

remove() → void
@DocsEditable(), @DomName('Element.remove'), inherited

Removes this node from the DOM.

removeEventListener(String type, EventListener listener, [ bool useCapture ]) → void
inherited
replaceWith(Node otherNode) → Node
@DomName('Node.replaceChild'), inherited

Replaces this node with another node.

requestFullscreen() → void
@DocsEditable(), @DomName('Element.requestFullscreen'), @Experimental(), inherited
requestPointerLock() → void
@DocsEditable(), @DomName('Element.requestPointerLock'), @Experimental(), inherited
scroll([options_OR_x, num y ]) → void
inherited
scrollBy([options_OR_x, num y ]) → void
inherited
scrollIntoView([ScrollAlignment alignment ]) → void
inherited

Scrolls this element into view.

scrollTo([options_OR_x, num y ]) → void
inherited
setApplyScroll(ScrollStateCallback scrollStateCallback, String nativeScrollBehavior) → void
@DocsEditable(), @DomName('Element.setApplyScroll'), @Experimental(), inherited
setAttribute(String name, String value) → void
@DocsEditable(), @DomName('Element.setAttribute'), inherited
setAttributeNS(String namespaceURI, String name, String value) → void
@DocsEditable(), @DomName('Element.setAttributeNS'), inherited
setCustomValidity(String error) → void
@DomName('HTMLInputElement.setCustomValidity'), inherited
setDistributeScroll(ScrollStateCallback scrollStateCallback, String nativeScrollBehavior) → void
@DocsEditable(), @DomName('Element.setDistributeScroll'), @Experimental(), inherited
setInnerHtml(String html, { NodeValidator validator, NodeTreeSanitizer treeSanitizer }) → void
inherited

Parses the HTML fragment and sets it as the contents of this element. This ensures that the generated content follows the sanitization rules specified by the validator or treeSanitizer.

toString() → String
inherited

Returns a string representation of this object.

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-html/RangeInputElementBase-class.html