HTMLElement.js 348 B

123456789
  1. loadPage("file:///res/html/misc/welcome.html");
  2. afterInitialPageLoad(() => {
  3. test("contentEditable attribute", () => {
  4. expect(document.body.contentEditable).toBe("inherit");
  5. expect(document.firstChild.nextSibling.nodeName).toBe("html");
  6. expect(document.firstChild.nextSibling.contentEditable).toBe("true");
  7. });
  8. });