Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
function run_test() {
var Cu = Components.utils;
var sb = new Cu.Sandbox('http://www.example.com',
{ wantGlobalProperties: ["DOMException"] });
sb.notEqual = Assert.notEqual.bind(Assert);
Cu.evalInSandbox('notEqual(DOMException, undefined);', sb);
}