gecko-dev/layout/base/tests/bug1423331-2-ref.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

24 lines
603 B
HTML

<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>Test reference for bug 1423331: Contenteditable insertion with pseudo-elements</title>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
#editable {
outline: 1px solid black;
width: 300px;
height: 100px;
}
</style>
<div id="editable" contenteditable></div>
<script>
SimpleTest.waitForFocus(function() {
let div = document.getElementById("editable");
div.focus();
sendString("xxx");
document.documentElement.className = "";
});
</script>
</html>