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.

14 lines
420 B
JavaScript

'use strict';
const {DOCUMENT_FRAGMENT_NODE} = require('../shared/constants.js');
const {NonElementParentNode} = require('../mixin/non-element-parent-node.js');
/**
* @implements globalThis.DocumentFragment
*/
class DocumentFragment extends NonElementParentNode {
constructor(ownerDocument) {
super(ownerDocument, '#document-fragment', DOCUMENT_FRAGMENT_NODE);
}
}
exports.DocumentFragment = DocumentFragment