2021-05-18 11:16:54 -03:00
|
|
|
describe("HTMLElement", () => {
|
|
|
|
|
loadLocalPage("/res/html/misc/welcome.html");
|
2020-08-02 22:57:28 -03:00
|
|
|
|
2021-05-18 11:16:54 -03:00
|
|
|
afterInitialPageLoad(page => {
|
|
|
|
|
test("contentEditable attribute", () => {
|
|
|
|
|
expect(page.document.body.contentEditable).toBe("inherit");
|
|
|
|
|
expect(page.document.firstChild.nextSibling.nodeName).toBe("HTML");
|
|
|
|
|
expect(page.document.firstChild.nextSibling.contentEditable).toBe("true");
|
|
|
|
|
});
|
2020-12-26 12:24:24 -03:00
|
|
|
});
|
2021-05-18 11:16:54 -03:00
|
|
|
waitForPageToLoad();
|
2020-08-02 22:57:28 -03:00
|
|
|
});
|