Sha256: 2f7325759f3c27fb4a49c7bfc8555093d04e2b406a414c3f125557fccf96bc4f
Contents?: true
Size: 597 Bytes
Versions: 46
Compression:
Stored size: 597 Bytes
Contents
"use strict"; const HTMLCollection = require("../generated/HTMLCollection"); const HTMLElementImpl = require("./HTMLElement-impl").implementation; const { descendantsByLocalName } = require("../helpers/traversal"); class HTMLDataListElementImpl extends HTMLElementImpl { // https://html.spec.whatwg.org/multipage/form-elements.html#dom-datalist-options get options() { return HTMLCollection.createImpl(this._globalObject, [], { element: this, query: () => descendantsByLocalName(this, "option") }); } } module.exports = { implementation: HTMLDataListElementImpl };
Version data entries
46 entries across 46 versions & 2 rubygems