You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
479 B
37 lines
479 B
"use strict";
|
|
|
|
exports.implementation = class NavigatorIDImpl {
|
|
get appCodeName() {
|
|
return "Mozilla";
|
|
}
|
|
|
|
get appName() {
|
|
return "Netscape";
|
|
}
|
|
|
|
get appVersion() {
|
|
return "4.0";
|
|
}
|
|
|
|
get platform() {
|
|
return "";
|
|
}
|
|
|
|
get product() {
|
|
return "Gecko";
|
|
}
|
|
|
|
get productSub() {
|
|
return "20030107";
|
|
}
|
|
|
|
// see Navigator constructor for userAgent
|
|
|
|
get vendor() {
|
|
return "Apple Computer, Inc.";
|
|
}
|
|
|
|
get vendorSub() {
|
|
return "";
|
|
}
|
|
};
|
|
|