mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +00:00
LibWeb: Reorganize tests into DOM/ and HTML/
This commit is contained in:
parent
2dc08d259e
commit
354f9aafd5
3 changed files with 0 additions and 0 deletions
9
Libraries/LibWeb/Tests/HTML/HTMLElement.js
Normal file
9
Libraries/LibWeb/Tests/HTML/HTMLElement.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
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");
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue