mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 09:11:01 +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");
|
||
|
|
});
|
||
|
|
});
|