summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/doc_markup_events_04.html
blob: 93d105bf3d4cb7fc1ba4eb73045c7ac364df8056 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <style>
    #constructed-function,
    #constructed-function-with-body-string,
    #multiple-assignment,
    #promise,
    #math-pow,
    #handleEvent {
      border: 1px solid #000;
      width: 200px;
      min-height: 1em;
      cursor: pointer;
    }
    </style>
    <script type="application/javascript">
      "use strict";

      const constructedFunc = new Function();

      const constructedFuncWithBodyString =
        new Function('a', 'b', 'c', 'alert("constructedFuncWithBodyString");');

      const multipleAssignment = function multi() {
        alert("multipleAssignment");
      }

      /* exported init */
      function init() {
        const constructedFunctionNode =
          document.getElementById("constructed-function");
        constructedFunctionNode.addEventListener("click", constructedFunc);

        const constructedFunctionWithBodyStringNode =
          document.getElementById("constructed-function-with-body-string");
        constructedFunctionWithBodyStringNode
          .addEventListener("click", constructedFuncWithBodyString);

        const multipleAssignmentNode =
          document.getElementById("multiple-assignment");
        multipleAssignmentNode.addEventListener("click", multipleAssignment);

        const promiseNode = document.getElementById("promise");
        new Promise((resolve, reject) => {
          promiseNode.addEventListener("click", resolve);
        });

        const mathPowNode = document.getElementById("math-pow");
        mathPowNode.addEventListener("click", Math.pow);

        new HandleEvent();

        document.addEventListener("click", function(foo, bar) {
          alert("document event listener clicked");
        });

        document.documentElement.addEventListener("click", function(foo2, bar2) {
          alert("documentElement event listener clicked");
        });
      }

      function Es6Method(hehe) {

      }

      Es6Method.prototype = {
        es6Method(foo, bar) {
          alert("obj.es6Method");
        }
      };

      function HandleEvent() {
        const handleEventNode = document.getElementById("handleEvent");
        handleEventNode.addEventListener("click", this);
      }

      HandleEvent.prototype = {
        // eslint-disable-next-line object-shorthand
        handleEvent: function(event) {
          switch (event.type) {
            case "click":
              alert("handleEvent click");
          }
        }
      };
    </script>
  </head>
  <body onload="init();">
    <h1>Events test 4</h1>
    <div id="constructed-function">Constructed Function</div>
    <div id="constructed-function-with-body-string">
      Constructed Function with body string
    </div>
    <div id="multiple-assignment">Multiple Assignment</div>
    <div id="promise">Promise</div>
    <div id="math-pow">Math.pow</div>
    <div id="handleEvent">HandleEvent</div>
  </body>
</html>