Sha256: ec42b73098048cfd1532c76c7b1a985176d2e32bbfb01f6e6e6e0bb45faf3553
Contents?: true
Size: 516 Bytes
Versions: 46
Compression:
Stored size: 516 Bytes
Contents
"use strict"; const HTMLElementImpl = require("./HTMLElement-impl").implementation; const { formOwner } = require("../helpers/form-controls"); const { HTML_NS } = require("../helpers/namespaces"); class HTMLLegendElementImpl extends HTMLElementImpl { get form() { const parent = this.parentNode; if (parent && parent._localName === "fieldset" && parent.namespaceURI === HTML_NS) { return formOwner(parent); } return null; } } module.exports = { implementation: HTMLLegendElementImpl };
Version data entries
46 entries across 46 versions & 2 rubygems