| <script src="../../resources/js-test-pre.js"></script> |
| <p id="description">This makes sure we are able to delete the contents of a password field: deleting a selection and evaluating the field contents.</p> |
| <input type="password" id="passwordField"> |
| if (!window.testRunner || !window.internals) |
| testFailed('This test requires access to window.internals'); |
| var desiredString = "hello"; |
| function runTest(element) { |
| textField.value = "helllo"; |
| shouldBe("passwordField.value='helllo'; passwordField.setSelectionRange(3, 4); testRunner.execCommand('Delete', false, null); passwordField.value", "'hello'"); |
| textField.parentNode.removeChild(textField); |
| runTest(document.getElementById('passwordField')); |
| <script src="../../resources/js-test-post.js"></script> |