blob: 5c455cc02ff951c2437ffda6685ae3dee345700a [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<div id="result"></div>
<div id="parent_of_div">
<div id="div"></div>
</div>
<div id="parent_of_p">
<p id="p"></p>
</div>
<script>
description('Content should be editable if its and its ancestor\'s contentEditable not set, and document.designMode is enabled.')
evalAndLog('document.designMode = "on"');
shouldBe('document.getElementById("div").contentEditable', '"inherit"');
shouldBe('document.getElementById("div").isContentEditable', 'true');
shouldBe('window.getComputedStyle(div, "").getPropertyValue("-webkit-user-modify")', '"read-write"');
shouldBe('document.getElementById("p").contentEditable', '"inherit"');
shouldBe('document.getElementById("p").isContentEditable', 'true');
shouldBe('window.getComputedStyle(p, "").getPropertyValue("-webkit-user-modify")', '"read-write"');
document.getElementById("parent_of_div").style.display= 'none';
document.getElementById("parent_of_p").style.display= 'none';
</script>
</body>
</html>