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.
12 lines
359 B
JavaScript
12 lines
359 B
JavaScript
import {DOCUMENT_FRAGMENT_NODE} from '../shared/constants.js';
|
|
import {NonElementParentNode} from '../mixin/non-element-parent-node.js';
|
|
|
|
/**
|
|
* @implements globalThis.DocumentFragment
|
|
*/
|
|
export class DocumentFragment extends NonElementParentNode {
|
|
constructor(ownerDocument) {
|
|
super(ownerDocument, '#document-fragment', DOCUMENT_FRAGMENT_NODE);
|
|
}
|
|
}
|