зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
417 B
JavaScript
17 строки
417 B
JavaScript
function run_test()
|
|
{
|
|
Cu.importGlobalProperties(["XMLHttpRequest"]);
|
|
|
|
var x = new XMLHttpRequest({mozAnon: true, mozSystem: false});
|
|
Assert.ok(x.mozAnon);
|
|
Assert.ok(x.mozSystem); // Because we're system principal
|
|
|
|
x = new XMLHttpRequest({mozAnon: true});
|
|
Assert.ok(x.mozAnon);
|
|
Assert.ok(x.mozSystem);
|
|
|
|
x = new XMLHttpRequest();
|
|
Assert.ok(!x.mozAnon);
|
|
Assert.ok(x.mozSystem);
|
|
}
|