gecko-dev/layout/base/tests/bug632215-1.html
Masayuki Nakano cf83ee7bb4 Bug 1438157 - part 2: Remove unnecessary second argument of EventUtils.synthesizeKey() r=smaug
Note that this patch also replaces legacy VK_* with KEY_*, and replaces
synthesizeKey() for inputting some characters with sendString() because
it's better and clearer what it does and it sets shiftKey state properly.

MozReview-Commit-ID: De4enbjux3T

--HG--
extra : rebase_source : 2296b84bff8e22f01eeb48cd8614fac5db11136a
2018-02-15 04:15:39 +09:00

30 lines
832 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<iframe srcdoc="<body spellcheck=false></body>"></iframe>
<script>
onload = function() {
var i = document.querySelector("iframe");
var d = i.contentDocument;
var w = i.contentWindow;
var s = w.getSelection();
i.focus();
d.body.contentEditable = true;
d.body.contentEditable = false;
d.designMode = "off";
d.designMode = "on";
d.body.focus();
sendString("x");
s.collapse(d.body.firstChild, 1);
sendString("x");
setTimeout(function() {
document.documentElement.removeAttribute("class");
}, 0);
};
</script>
</body>
</html>