summaryrefslogtreecommitdiffstats
path: root/dom/html/test/imports/test_cycle_4.html
blob: 441ffbac8bd93577df9444902cb96255d5e149c0 (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>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1061469
-->
<head>
  <title>Test for Bug 1061469</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
  <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1061469">Mozilla Bug 1061469</a>
  <script type="text/javascript">
    SimpleTest.waitForExplicitFinish();
    var counter = 0;
    var fcounter = 0;
    var order = [];
    function loaded() {
      counter++;
    }
    function failed() {
      fcounter++;
    }
  </script>
  <link rel="import" href="file_cycle_4_A.html" onload="loaded()" onerror="failed()"></link>
  <link rel="import" href="file_cycle_4_D.html" onload="loaded()" onerror="failed()"></link>
  <script type="text/javascript">
    is(counter, 8, "Imports are loaded");
    is(fcounter, 0, "No error in imports");
    var expected = ["E","D","C","B","A"];
    for (i in expected)
      is(order[i], expected[i], "import " + i + " should be " + expected[i]);
    SimpleTest.finish();
  </script>
</body>
</html>