summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/doc_markup_events_react_development_15.4.1.html
blob: e467b9baa07bc4869b8c50c1893838e478338f13 (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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />

    <script src="lib_react_with_addons_15.4.1.js"></script>
    <script src="lib_react_dom_15.4.1.js"></script>
    <script src="react_external_listeners.js"></script>
  </head>
  <body>
    <h1>doc_markup_events_react_development_15.4.1.html</h1>

    <div id="container"></div>

    <script>
      "use strict";

      /* global React, ReactDOM, externalCapturingFunction, externalFunction */

      var ClickMe2 = React.createClass({
        // eslint-disable-next-line object-shorthand
        inlineFunction: function () {
          alert("inlineFunction");
        },

        render() {
          return React.createElement(
            "div",
            null,
            React.createElement(
              "h3",
              {
                id: "inline",
                onClick: this.inlineFunction
              },
              "Click for inlineFunction"
            ),
            React.createElement(
              "h3",
              {
                id: "external",
                onClick: externalFunction
              },
              "Click for externalFunction"
            ),
            React.createElement(
              "h3",
              {
                id: "externalinline",
                onClick: externalFunction,
                onMouseUp: this.inlineFunction
              },
              "Click for both"
            ),
            React.createElement(
              "h3",
              {
                id: "externalcapturing",
                onClickCapture: externalCapturingFunction
              },
              "Click for externalCapturingFunction"
            )
          );
        }
      });

      ReactDOM.render(
        React.createElement(ClickMe2),
        document.getElementById("container")
      );
    </script>
  </body>
</html>