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

    afterInitialPageLoad(page => {
        test("Basic functionality", () => {
            const title = page.document.getElementsByTagName("title")[0];
            expect(title).toBeDefined();

            // FIXME: Add this in once Text's constructor is implemented.
            //expect(title.firstChild).toBeInstanceOf(Text);

            expect(title.firstChild.nodeName).toBe("#text");
            expect(title.firstChild.data).toBe("Blank");
            expect(title.firstChild.length).toBe(5);
        });
    });
    waitForPageToLoad();
});