mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 20:42:11 +02: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");
|
|
});
|
|
});
|