mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-07 00:30:59 +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);
|
||
|
|
});
|
||
|
|
});
|