1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-20 20:22:10 +00:00
serenity/Libraries/LibWeb/Tests/Document/documentElement.js
Andreas Kling e27726dc92 LibWeb: Add the Document.documentElement API
Also change DOM::Document::document_element() to return an Element*
and not an HTML::HTMLHtmlElement since that's not the only kind of
documentElement we might encounter.
2020-08-03 13:30:18 +02:00

8 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");
});
});