self.onmessage = function (event) { if (!event || !event.data) { return;
}
startTest(event.data);
};
function startTest(channelData) { // Prepare the interface map showing if a property should exist in this build. // For example, if interfaceMap[foo] = true means navigator.foo should exist. var interfaceMap = {};
for (var prop of supportedProps) { if (typeof prop === "string") {
interfaceMap[prop] = !channelData.isInsecureContext; continue;
}
for (var prop in navigator) { // Make sure the list is current! if (!interfaceMap[prop]) { throw"Navigator has the '" + prop + "' property that isn't in the list!";
}
}
var obj;
for (var prop in interfaceMap) { // Skip the property that is not supposed to exist in this build. if (!interfaceMap[prop]) { continue;
}
if (typeof navigator[prop] == "undefined") { throw"Navigator has no '" + prop + "' property!";
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.