summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug1496118.html
blob: cdfaf5c586c9969d08e0f2f360fcababd6d3464b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <style>
    input, input:active { border: none; }
  </style>
</head>
<body>
<input id="input1" value="aaaaaaaaaaaaaaaaaaaa">
<div id=div1 style="height: 100px;">
  <textarea id="textarea1"></textarea>
</div>
<script>
SimpleTest.waitForFocus(() => {
  let div1 = document.getElementById('div1');
  let textarea1 = document.getElementById('textarea1');
  div1.addEventListener("drop", e => {
    e.preventDefault();

    textarea1.style = "display: none;";
    SimpleTest.executeSoon(() => {
      synthesizeKey("A");
      document.documentElement.removeAttribute("class");
    });
  });

  let input1 = document.getElementById('input1');
  input1.focus();
  input1.setSelectionRange(0, input1.value.length);

  synthesizeDrop(input1, textarea1, [[{type: "text/plain", data: "foo"}]]);
});
</script>
</body>
</html>