You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
409 B
JavaScript
19 lines
409 B
JavaScript
import {registerHTMLClass} from '../shared/register-html-class.js';
|
|
|
|
import {TextElement} from './text-element.js';
|
|
|
|
const tagName = 'title';
|
|
|
|
/**
|
|
* @implements globalThis.HTMLTitleElement
|
|
*/
|
|
class HTMLTitleElement extends TextElement {
|
|
constructor(ownerDocument, localName = tagName) {
|
|
super(ownerDocument, localName);
|
|
}
|
|
}
|
|
|
|
registerHTMLClass(tagName, HTMLTitleElement);
|
|
|
|
export {HTMLTitleElement};
|