зеркало из https://github.com/mozilla/gecko-dev.git
38 строки
1.1 KiB
HTML
38 строки
1.1 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=439808
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 439808</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=439808">Mozilla Bug 439808</a>
|
|
<p id="display"></p>
|
|
<div id="content">
|
|
<span><span contenteditable id="e">twest</span></span>
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 439808 **/
|
|
SimpleTest.waitForExplicitFinish();
|
|
SimpleTest.waitForFocus(function() {
|
|
var e = document.getElementById("e");
|
|
e.focus();
|
|
getSelection().collapse(e.firstChild, 1);
|
|
synthesizeKey("VK_DELETE", {});
|
|
is(e.textContent, "test", "Delete key worked");
|
|
synthesizeKey("VK_BACK_SPACE", {});
|
|
is(e.textContent, "est", "Backspace key worked");
|
|
SimpleTest.finish();
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|