UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

59 lines (53 loc) 1.14 kB
import HTMLElement from '../html-element/HTMLElement.js'; import * as PropertySymbol from '../../PropertySymbol.js'; /** * HTML Base Element. * * Reference: * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base. */ export default class HTMLBaseElement extends HTMLElement { public cloneNode: (deep?: boolean) => HTMLBaseElement; /** * Returns href. * * @returns Href. */ public get href(): string { const href = this.getAttribute('href'); if (href !== null) { return href; } return this[PropertySymbol.ownerDocument].location.href; } /** * Sets href. * * @param href Href. */ public set href(href: string) { this.setAttribute('href', href); } /** * Returns target. * * @returns Target. */ public get target(): string { return this.getAttribute('target') || ''; } /** * Sets target. * * @param target Target. */ public set target(target: string) { this.setAttribute('target', target); } /** * @override */ public override [PropertySymbol.cloneNode](deep = false): HTMLBaseElement { return <HTMLBaseElement>super[PropertySymbol.cloneNode](deep); } }