summaryrefslogtreecommitdiffstats
path: root/dom/xbl/test/test_bug772966.xul
blob: d58d5525d2941f056b21e0cdb8cad2580aa51e65 (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
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=772966
-->
<window title="Mozilla Bug 772966"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        onload="runTest()">
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>

  <!-- test results are displayed in the html:body -->
  <body xmlns="http://www.w3.org/1999/xhtml">
  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=772966"
     target="_blank">Mozilla Bug 772966</a>
  </body>

  <script>
    function runTest() {
      is(document.getElementById('b').test(123, 123, 123), 2, "Should have 2 params.");
    }
  </script>
  
  <box id="b" style="-moz-binding: url(#binding)"/>
  
  <xbl:bindings xmlns:xbl="http://www.mozilla.org/xbl">
    <xbl:binding id="binding">
      <xbl:implementation>
        <xbl:method name="test">
          <xbl:parameter name="p1"/>
          <xbl:parameter name=""/>
          <xbl:parameter name="p2"/>
          <xbl:body><![CDATA[
            return arguments.callee.length;
          ]]></xbl:body>
        </xbl:method>
      </xbl:implementation>
    </xbl:binding>
  </xbl:bindings>
  

</window>