justin.garcia@apple.com | 16711cb | 2008-02-15 23:25:26 +0000 | [diff] [blame] | 1 | <p>This tests for a crash on Undo. You should see an empty input field below.</p> |
| 2 | <input type="text" id="input"> |
| 3 | |
| 4 | <script> |
rniwa@webkit.org | 14f6b5b | 2012-06-13 08:51:53 +0000 | [diff] [blame] | 5 | if (window.testRunner) |
| 6 | window.testRunner.dumpAsText(); |
justin.garcia@apple.com | 16711cb | 2008-02-15 23:25:26 +0000 | [diff] [blame] | 7 | document.getElementById("input").focus(); |
| 8 | document.execCommand("InsertText", false, "x"); |
| 9 | document.execCommand("Undo"); |
| 10 | </script> |