blob: 837dff89da6f2657b27a93f681908b760af8a70b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
div {
min-height: 36px;
overflow-x: auto;
}
</style>
<script 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>
|