| <title>Test -webkit-user-select with a placeholder in a textfield.</title> |
| <script src="../../resources/js-test-pre.js"></script> |
| * { -webkit-user-select: none; } |
| input { -webkit-user-select: text; } |
| <input id="x" value="PASS"> |
| description("Test that deleting the text in a textfield, and pasting, doesn't hit an issue with -webkit-user-select on br"); |
| var input = document.getElementById("x"); |
| document.execCommand("Copy"); |
| document.execCommand("Delete"); |
| document.execCommand("Paste"); |
| shouldBe('input.value', '"PASS"'); |
| <script src="../../resources/js-test-post.js"></script> |