| <!DOCTYPE html> |
| <html> |
| <head> |
| <script src="../../../resources/js-test-pre.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> |
| <script src="../../../resources/js-test-post.js"></script> |
| </body> |
| </html> |