
Commit 19731fc14c
(#6864) made all nodeName attributes on HTML elements
uppercased. This change fixes that in all HTML & DOM tests.
9 lines
348 B
JavaScript
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");
|
|
});
|
|
});
|