4 <script src=
"../../resources/js-test.js"></script>
5 <script src=
"resources/util.js"></script>
9 <input id=
"destination" type=
"text" name=
"type" value=
"">
14 description("Spell check does not crash after Ctrl-X/Ctrl-V/type text in ASAN. " +
15 "To test manually, type 'A', Ctrl-A, Ctrl-X, Ctrl-V, and start typing again. " +
16 "The test succeeds when there's no crash in the last step.");
18 initSpellTest("destination", "A", function(textNode
) {
19 var behaviors
= ["win", "mac"];
20 for (var i
= 0; i
< behaviors
.length
; i
++) {
21 internals
.settings
.setEditingBehavior(behaviors
[i
]);
22 document
.execCommand("SelectAll");
23 document
.execCommand("Cut");
24 document
.execCommand("Paste");
25 document
.execCommand("InsertText", false, "A");
27 log("PASS Did not crash");