aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/test_mouse_down_mouse_up_click.html
blob: 29f3ec29cd89e7a6b15b03d14a97b459fafc19ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<body>
<input id="clicked">
<script>
  document.getElementById("clicked").addEventListener("mousedown", function () {
      window.alert("mousedown"); },
      false);
  document.getElementById("clicked").addEventListener('mouseup', function() {
      window.alert("mouseup"); },
      false);
  document.getElementById("clicked").addEventListener("click", function() {
      window.alert("clicked"); },
      false);
</script>
</body>