2009-02-16 17:11:41 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
|
|
<script>
|
|
|
|
function doIs(arg1, arg2, arg3) {
|
|
|
|
window.parent.postMessage("t " + encodeURIComponent(arg1) + " " +
|
|
|
|
encodeURIComponent(arg2) + " " +
|
|
|
|
encodeURIComponent(arg3), "*");
|
|
|
|
}
|
|
|
|
|
|
|
|
function $(arg) { return document.getElementById(arg); }
|
|
|
|
|
|
|
|
window.addEventListener("message",
|
|
|
|
function(evt) {
|
|
|
|
doIs(evt.data, "start", "Unexpected message");
|
2011-12-16 17:38:45 +04:00
|
|
|
$("target").focus();
|
2009-02-16 17:11:41 +03:00
|
|
|
sendString("Test");
|
|
|
|
var t = $("target");
|
|
|
|
doIs(t.value, "Test", "Typing should work");
|
|
|
|
(function() {
|
2013-03-28 23:41:32 +04:00
|
|
|
SpecialPowers.wrap(t).QueryInterface(SpecialPowers.Ci.nsIDOMNSEditableElement).editor.undo(1);
|
2009-02-16 17:11:41 +03:00
|
|
|
})()
|
|
|
|
doIs(t.value, "", "Undo should work");
|
|
|
|
(function() {
|
2013-03-28 23:41:32 +04:00
|
|
|
SpecialPowers.wrap(t).QueryInterface(SpecialPowers.Ci.nsIDOMNSEditableElement).editor.redo(1);
|
2009-02-16 17:11:41 +03:00
|
|
|
})()
|
|
|
|
doIs(t.value, "Test", "Redo should work");
|
|
|
|
window.parent.postMessage("f", "*");
|
|
|
|
},
|
|
|
|
"false");
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input id="target">
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|