tenfourfox/editor/reftests/spellcheck-contenteditable-focused-reframe.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
488 B
HTML

<!DOCTYPE html>
<html>
<body>
<div contenteditable id="testBox" onfocus="reframe(this);">blahblahblah</div>
<script type="text/javascript">
function reframe(textbox) {
textbox.style.display = "none";
textbox.style.display = "";
textbox.clientWidth;
}
//Adding focus to the textbox should trigger a spellcheck
document.getElementById("testBox").focus();
document.getElementById("testBox").blur();
</script>
</body>
</html>