Serenity Operating System
at master 12 lines 610 B view raw
1// https://html.spec.whatwg.org/multipage/system-state.html#navigatorid 2interface 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};