UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

13 lines (11 loc) 282 B
'use strict'; const {HTMLElement} = require('./element.js'); /** * @implements globalThis.HTMLLIElement */ class HTMLLIElement extends HTMLElement { constructor(ownerDocument, localName = 'li') { super(ownerDocument, localName); } } exports.HTMLLIElement = HTMLLIElement