jsdom
Version:
A JavaScript implementation of many web standards
14 lines (11 loc) • 310 B
JavaScript
;
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
const { formOwner } = require("../helpers/form-controls");
class HTMLLegendElementImpl extends HTMLElementImpl {
get form() {
return formOwner(this);
}
}
module.exports = {
implementation: HTMLLegendElementImpl
};