summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Tests/DOM/document.createDocumentFragment.js
blob: ee3dc1843d83a24b5ece31e9be5e44d05c305347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
describe("createDocumentFragment", () => {
    loadLocalPage("/res/html/misc/blank.html");

    afterInitialPageLoad(page => {
        test("Basic functionality", () => {
            const fragment = page.document.createDocumentFragment();

            // FIXME: Add this in once DocumentFragment's constructor is implemented.
            //expect(fragment).toBeInstanceOf(DocumentFragment);
            expect(fragment.nodeName).toBe("#document-fragment");
        });
    });

    waitForPageToLoad();
});