mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 13:19:47 +00:00
11 lines
350 B
JavaScript
11 lines
350 B
JavaScript
loadPage("file:///res/html/misc/blank.html");
|
|
|
|
afterInitialPageLoad(() => {
|
|
test("Basic functionality", () => {
|
|
var title = document.getElementsByTagName("title")[0];
|
|
expect(title.firstChild.nodeName).toBe("#text");
|
|
expect(title.firstChild.data).toBe("Blank");
|
|
expect(title.firstChild.length).toBe(5);
|
|
});
|
|
});
|