mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
25 lines
610 B
HTML
25 lines
610 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
div {
|
|
min-height: 36px;
|
|
overflow-x: auto;
|
|
}
|
|
</style>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
<script>
|
|
function test() {
|
|
document.querySelector("div").focus();
|
|
// type a character, then press backspace to delete it
|
|
sendChar("X");
|
|
sendKey("BACK_SPACE");
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="test()">
|
|
<div id="div1" contenteditable></div>
|
|
</body>
|
|
</html>
|