mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
12 lines
395 B
Plaintext
12 lines
395 B
Plaintext
interface Navigator {
|
|
readonly attribute wstring userAgent;
|
|
readonly attribute wstring appCodeName;
|
|
readonly attribute wstring appVersion;
|
|
readonly attribute wstring appName;
|
|
readonly attribute wstring language;
|
|
readonly attribute wstring platform;
|
|
readonly attribute wstring securityPolicy;
|
|
|
|
boolean javaEnabled();
|
|
};
|