| <p>This test ensures WebKit does not lose focus when the text is removed from a text field when br's visibility is hidden.</p> |
| <input id="test" type="text"> |
| var test = document.getElementById('test'); |
| document.execCommand('InsertText', false, 'abc'); |
| document.execCommand('Delete', false, null); |
| document.execCommand('Delete', false, null); |
| document.execCommand('Delete', false, null); |
| document.execCommand('InsertText', false, 'PASS'); |
| if (test.value != 'PASS') |
| if (window.layoutTestController) { |
| layoutTestController.dumpAsText(); |
| test.parentNode.parentNode.style.display = 'none'; |
| document.writeln(test.value); |