mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
20 lines
536 B
HTML
20 lines
536 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
</head>
|
|
<body onload="setupCaret()" spellcheck="false">
|
|
<div contenteditable>a<span>b</span>c </div>
|
|
<script>
|
|
function setupCaret() {
|
|
var div = document.querySelector("div");
|
|
div.focus();
|
|
var sel = window.getSelection();
|
|
sel.collapse(div, 3);
|
|
synthesizeKey("VK_BACK_SPACE", {});
|
|
synthesizeKey("VK_BACK_SPACE", {});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|