blob: fb2b0b896067486cb25238f95b692cd9f96ec1f7 [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="div" contentEditable=""></div>
<script>
description('When contentEditable attribute is empty string, element.contentEditable returns "true" and the element is editable.')
shouldBe('document.getElementById("div").getAttribute("contentEditable")','""');
shouldBe('document.getElementById("div").contentEditable', '"true"');
shouldBe('document.getElementById("div").isContentEditable', 'true');
shouldBe('window.getComputedStyle(div, "").getPropertyValue("-webkit-user-modify")', '"read-write"');
document.getElementById("div").style.display= 'none';
</script>
</body>
</html>