UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

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