mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 13:19:47 +00:00
9 lines
249 B
JavaScript
9 lines
249 B
JavaScript
loadPage("file:///res/html/misc/blank.html");
|
|
|
|
afterInitialPageLoad(() => {
|
|
test("Basic functionality", () => {
|
|
expect(document.documentElement).not.toBe(null);
|
|
expect(document.documentElement.nodeName).toBe("html");
|
|
});
|
|
});
|