summaryrefslogtreecommitdiffstats
path: root/editor/reftests/spellcheck-contenteditable-focused-reframe.html
blob: 733ee05bb361f46b90139e6c0460fdf1446a753b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>