mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
476 B
HTML
19 lines
476 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<script>
|
||
|
function init() {
|
||
|
var editor = document.getElementById('editor');
|
||
|
editor.addEventListener("focus", function() {
|
||
|
window.setTimeout(function() {
|
||
|
document.documentElement.className = '';
|
||
|
}, 0);
|
||
|
}, false);
|
||
|
editor.focus();
|
||
|
}
|
||
|
</script>
|
||
|
<body onload="init()">
|
||
|
<div id="editor" lang="testing-XX" contenteditable="true" spellcheck="false">strangeimpossibleword</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
|