diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2019-06-11 11:46:28 -0500 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2019-06-11 11:46:28 -0500 |
commit | 4cfd62ac796e4678c21da87688cb4ea0dbfdcf60 (patch) | |
tree | 3d6c4f7e5f52929c8b1284c928b519991a307b94 /components/script/dom/webidls/Navigator.webidl | |
parent | b3eed5b5bdb39138bab07ca18b77e4b622179756 (diff) | |
download | servo-4cfd62ac796e4678c21da87688cb4ea0dbfdcf60.tar.gz servo-4cfd62ac796e4678c21da87688cb4ea0dbfdcf60.zip |
Added missing NavigatorId attributes
Diffstat (limited to 'components/script/dom/webidls/Navigator.webidl')
-rw-r--r-- | components/script/dom/webidls/Navigator.webidl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/dom/webidls/Navigator.webidl b/components/script/dom/webidls/Navigator.webidl index 1b4f18640ff..eb3577159fa 100644 --- a/components/script/dom/webidls/Navigator.webidl +++ b/components/script/dom/webidls/Navigator.webidl @@ -22,8 +22,11 @@ interface NavigatorID { readonly attribute DOMString appVersion; readonly attribute DOMString platform; readonly attribute DOMString product; // constant "Gecko" + [Exposed=Window] readonly attribute DOMString productSub; boolean taintEnabled(); // constant false readonly attribute DOMString userAgent; + [Exposed=Window] readonly attribute DOMString vendor; + [Exposed=Window] readonly attribute DOMString vendorSub; // constant "" }; // https://webbluetoothcg.github.io/web-bluetooth/#navigator-extensions |