summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug634406-1.html
blob: 1b13a4c63605c5a84981dba70664363f6d765f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE HTML><html><head>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<textarea spellcheck="false" style="-moz-appearance: none"></textarea>
<script>
  var t = document.querySelector("textarea");
  t.focus();

  sendString("a");
  synthesizeKey("A", {accelKey: true});
  synthesizeKey("KEY_ArrowRight");
  sendString("b");
</script>
</body>
</html>