summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug389321-1-ref.html
blob: f8dd9c407d30727ea2ca91ff24363cd2b61ffa5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML><html><head>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<span contenteditable id="t" style="border: 1px dashed green; min-height: 2px; padding-right: 20px;"> </span></body>
<script>
  var sel = window.getSelection();
  sel.removeAllRanges();

  // Focus the span to put the caret at its beginning.
  var area = document.getElementById('t');
  area.focus();

  // Do nothing else.
</script>
</body>
</html>