mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
39
layout/forms/test/bug477700_subframe.html
Normal file
39
layout/forms/test/bug477700_subframe.html
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<!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");
|
||||
$("target").focus();
|
||||
sendString("Test");
|
||||
var t = $("target");
|
||||
doIs(t.value, "Test", "Typing should work");
|
||||
(function() {
|
||||
SpecialPowers.wrap(t).QueryInterface(SpecialPowers.Ci.nsIDOMNSEditableElement).editor.undo(1);
|
||||
})()
|
||||
doIs(t.value, "", "Undo should work");
|
||||
(function() {
|
||||
SpecialPowers.wrap(t).QueryInterface(SpecialPowers.Ci.nsIDOMNSEditableElement).editor.redo(1);
|
||||
})()
|
||||
doIs(t.value, "Test", "Redo should work");
|
||||
window.parent.postMessage("f", "*");
|
||||
},
|
||||
"false");
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<input id="target">
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue