ladybird/Userland/Libraries/LibWeb/Tests/HTML/HTMLElement.js
2021-01-12 12:17:46 +01:00

9 lines
348 B
JavaScript

loadPage("file:///res/html/misc/welcome.html");
afterInitialPageLoad(() => {
test("contentEditable attribute", () => {
expect(document.body.contentEditable).toBe("inherit");
expect(document.firstChild.nextSibling.nodeName).toBe("html");
expect(document.firstChild.nextSibling.contentEditable).toBe("true");
});
});