summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Tests/HTML/document.head.js
blob: 5d997fe3dd2d1f52695c118dddcd2096cfb3ddfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
loadPage("file:///res/html/misc/blank.html");

afterInitialPageLoad(() => {
    test("Basic functionality", () => {
        expect(document.head).not.toBeNull();
        // FIXME: Add this in once HTMLHeadElement's constructor is implemented.
        //expect(document.head).toBeInstanceOf(HTMLHeadElement);
        expect(document.head.nodeName).toBe("head");
    });

    // FIXME: Add this in once removeChild is implemented.
    test.skip("Nullable", () => {
        document.documentElement.removeChild(document.head);
        expect(document.head).toBeNull();
    });
});