mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-26 02:18:09 +00:00
13 lines
310 B
JavaScript
13 lines
310 B
JavaScript
"use strict";
|
|
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
|
|
const { closest } = require("../helpers/traversal");
|
|
|
|
class HTMLLegendElementImpl extends HTMLElementImpl {
|
|
get form() {
|
|
return closest(this, "form");
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
implementation: HTMLLegendElementImpl
|
|
};
|