summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug336682_1.html
blob: 7d3ef6b345236c04d6a4655d32155611b865a3b7 (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
<!DOCTYPE HTML>
<html>
<!--
Bug 336682: online/offline events tests.

Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
-->
<head>
  <title>Test for Bug 336682 (online/offline events)</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body ononline="trace('<body ononline=...>');
                bodyOnonline(this, event)"
      onoffline="trace('<body onoffline=...>'); bodyOnoffline(this, event)"
      >
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=336682">Mozilla Bug 336682</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
</pre>
<script type="text/javascript" src="test_bug336682.js"></script>

<script class="testbody" type="text/javascript">

function makeBodyHandler(eventName) {
  return function (aThis, aEvent) {
    var handler = makeHandler("<body on%1='...'>", eventName, [1]);
    handler(aEvent);
  }
}
addLoadEvent(function() {
  /** @see test_bug336682.js */
  MAX_STATE = 2;

  for (var event of ["online", "offline"]) {
    window["bodyOn" + event] = makeBodyHandler(event);

    window.addEventListener(
      event,
      makeHandler("window.addEventListener('%1', ..., false)",
                  event, [2]));
  }

  doTest();
  SimpleTest.finish();
});

SimpleTest.waitForExplicitFinish();
</script>
</body>
</html>