Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
-->
<window title="Mozilla Bug 861493"
<iframe id="t" type="content"></iframe>
<!-- test results are displayed in the html:body -->
target="_blank">Mozilla Bug 861493</a>
</body>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Bug 861493 **/
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
ok(Cu.isXrayWrapper($("t").contentWindow),
"Should have xray");
var e = new ($("t").contentWindow).Event("test", { bubbles: true });
is(e.bubbles, true, "Dictionary should have worked");
SimpleTest.finish();
})
]]>
</script>
</window>