https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7c9042ed1194751d9488ca33384dd674ccc11406 authored by seabld on 25 February 2013, 02:14:22 UTC
Added tag SEAMONKEY_2_17b1_RELEASE for changeset FIREFOX_20_0b1_BUILD2. CLOSED TREE a=release
Tip revision: 7c9042e
bug634406-1.html
<!DOCTYPE HTML><html><head>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<textarea></textarea>
<script>
  var t = document.querySelector("textarea");
  t.focus();

  synthesizeKey("a", {});
  synthesizeKey("A", {accelKey: true});
  synthesizeKey("VK_RIGHT", {});
  synthesizeKey("b", {});
</script>
</body>
</html>
back to top