NavigatorID.idl 610 B

123456789101112
  1. // https://html.spec.whatwg.org/multipage/system-state.html#navigatorid
  2. interface mixin NavigatorID {
  3. readonly attribute DOMString appCodeName; // constant "Mozilla"
  4. readonly attribute DOMString appName; // constant "Netscape"
  5. readonly attribute DOMString appVersion;
  6. readonly attribute DOMString platform;
  7. readonly attribute DOMString product; // constant "Gecko"
  8. [Exposed=Window] readonly attribute DOMString productSub;
  9. readonly attribute DOMString userAgent;
  10. [Exposed=Window] readonly attribute DOMString vendor;
  11. [Exposed=Window] readonly attribute DOMString vendorSub; // constant ""
  12. };