mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
684 B
HTML
26 lines
684 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style>
|
||
|
div {
|
||
|
min-height: 36px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
</style>
|
||
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
||
|
<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
|
||
|
sendKey("X", window);
|
||
|
sendKey("BACK_SPACE", window);
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="test()">
|
||
|
<div contenteditable></div>
|
||
|
</body>
|
||
|
</html>
|