summaryrefslogtreecommitdiffstats
path: root/dom/xbl/test/test_bug872273.xhtml
blob: 18417028c3234c981f4a0eecb7a8ab7455f592fd (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
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=872273
-->
<head>
  <bindings xmlns="http://www.mozilla.org/xbl">
    <binding id="foo">
      <implementation>
        <method name="throwSomething" exposeToUntrustedContent="true">
          <body>
            throw new Error("foopy");
          </body>
        </method>
      </implementation>
    </binding>
  </bindings>
  <title>Test for Bug 872273</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=872273">Mozilla Bug 872273</a>
<p id="display" style="-moz-binding: url(#foo)"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
<![CDATA[

/** Test for Bug 872273 **/
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {

  // Prevent the test from failing when the exception hits onerror.
  SimpleTest.expectUncaughtException();

  // Tell the test to expect exactly one console error with the given parameters,
  // with SimpleTest.finish as a continuation function.
  SimpleTest.monitorConsole(SimpleTest.finish, [{errorMessage: new RegExp('foopy')}]);

  // Schedule the console accounting (and continuation) to run next, right
  // after we throw (below).
  SimpleTest.executeSoon(SimpleTest.endMonitorConsole);

  // Throw.
  $('display').throwSomething();
});

]]>
</script>
</pre>
</body>
</html>