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