summaryrefslogtreecommitdiffstats
path: root/dom/xbl/test/file_bug844783.xhtml
blob: a2e04edf2889207389fa9c4f6be3ec75a6119340 (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
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=844783
-->
<head>
  <bindings xmlns="http://www.mozilla.org/xbl">
    <binding id="testBinding">
      <implementation>
        <constructor>
          is(windowExpando, 42, "Expandos show up without explicit waiving");
          someFunction();
          ok(called, "Function called");
          go();
        </constructor>
      </implementation>
      <handlers>
        <handler event="testevent" action="is(boundExpando, 11, 'See expandos on |this|'); SimpleTest.finish();"/>
      </handlers>
    </binding>
  </bindings>
  <script type="application/javascript">
  <![CDATA[

  is = parent.is;
  ok = parent.ok;
  SimpleTest = parent.SimpleTest;
  window.windowExpando = 42;
  window.someFunction = function() { ok(true, "Called"); window.called = true; };

  function go() {
    var bound = document.getElementById('bound');
    bound.boundExpando = 11;
    bound.dispatchEvent(new CustomEvent('testevent'));
  }

  function setup() {
    // When the bindings are applied, the constructor will be invoked and the
    // test will continue.
    document.getElementById('bound').style.MozBinding = 'url(#testBinding)';
  }

  ]]>
</script>
</head>
<body onload="setup()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=844783">Mozilla Bug 844783</a>
<p id="display"></p>
<div id="content">
  <div id="bound">Bound element</div>
</div>
<pre id="test">
</pre>
</body>
</html>