LibWeb: Reorganize tests into DOM/ and HTML/

This commit is contained in:
Andreas Kling 2020-08-03 20:50:20 +02:00
commit 354f9aafd5
Notes: sideshowbarker 2024-07-19 04:20:46 +09:00
3 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,8 @@
loadPage("file:///res/html/misc/blank.html");
afterInitialPageLoad(() => {
test("Basic functionality", () => {
expect(document.documentElement).not.toBe(null);
expect(document.documentElement.nodeName).toBe("html");
});
});