forked from mirrors/gecko-dev
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35951 --HG-- extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
71 lines
1.5 KiB
JavaScript
71 lines
1.5 KiB
JavaScript
var worker = new Worker("navigator_worker.js");
|
|
|
|
var is = window.parent.is;
|
|
var ok = window.parent.ok;
|
|
var SimpleTest = window.parent.SimpleTest;
|
|
|
|
worker.onmessage = function(event) {
|
|
var args = JSON.parse(event.data);
|
|
|
|
if (args.name == "testFinished") {
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
if (typeof navigator[args.name] == "undefined") {
|
|
ok(false, "Navigator has no '" + args.name + "' property!");
|
|
return;
|
|
}
|
|
|
|
if (args.name === "languages") {
|
|
is(
|
|
navigator.languages.toString(),
|
|
args.value.toString(),
|
|
"languages matches"
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (args.name === "storage") {
|
|
is(typeof navigator.storage, typeof args.value, "storage type matches");
|
|
return;
|
|
}
|
|
|
|
if (args.name === "connection") {
|
|
is(
|
|
typeof navigator.connection,
|
|
typeof args.value,
|
|
"connection type matches"
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (args.name === "mediaCapabilities") {
|
|
is(
|
|
typeof navigator.mediaCapabilities,
|
|
typeof args.value,
|
|
"mediaCapabilities type matches"
|
|
);
|
|
return;
|
|
}
|
|
|
|
is(
|
|
navigator[args.name],
|
|
args.value,
|
|
"Mismatched navigator string for " + args.name + "!"
|
|
);
|
|
};
|
|
|
|
worker.onerror = function(event) {
|
|
ok(false, "Worker had an error: " + event.message);
|
|
SimpleTest.finish();
|
|
};
|
|
|
|
var { AppConstants } = SpecialPowers.Cu.import(
|
|
"resource://gre/modules/AppConstants.jsm",
|
|
{}
|
|
);
|
|
var isNightly = AppConstants.NIGHTLY_BUILD;
|
|
var isRelease = AppConstants.RELEASE_OR_BETA;
|
|
|
|
worker.postMessage({ isNightly, isRelease });
|