diff options
author | Moonchild <moonchild@palemoon.org> | 2020-07-28 15:46:41 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-07-28 15:46:41 +0000 |
commit | ad453f0b28bf1ac30f889abf3ae38e95315295b0 (patch) | |
tree | c33683c6009278b1c6e9f049465fb2e4eda890d4 /dom/webidl/Navigator.webidl | |
parent | d332d4a60ddc0c82d72706ecb6084af6fed359cc (diff) | |
download | UXP-ad453f0b28bf1ac30f889abf3ae38e95315295b0.tar UXP-ad453f0b28bf1ac30f889abf3ae38e95315295b0.tar.gz UXP-ad453f0b28bf1ac30f889abf3ae38e95315295b0.tar.lz UXP-ad453f0b28bf1ac30f889abf3ae38e95315295b0.tar.xz UXP-ad453f0b28bf1ac30f889abf3ae38e95315295b0.zip |
Issue #1391 - Remove the DOM battery API
Diffstat (limited to 'dom/webidl/Navigator.webidl')
-rw-r--r-- | dom/webidl/Navigator.webidl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/dom/webidl/Navigator.webidl b/dom/webidl/Navigator.webidl index 4536d7d25..f34429de7 100644 --- a/dom/webidl/Navigator.webidl +++ b/dom/webidl/Navigator.webidl @@ -7,7 +7,6 @@ * http://www.whatwg.org/specs/web-apps/current-work/#the-navigator-object * http://www.w3.org/TR/tracking-dnt/ * http://www.w3.org/TR/geolocation-API/#geolocation_interface - * http://www.w3.org/TR/battery-status/#navigatorbattery-interface * http://www.w3.org/TR/vibration/#vibration-interface * http://www.w3.org/2012/sysapps/runtime/#extension-to-the-navigator-interface-1 * https://dvcs.w3.org/hg/gamepad/raw-file/default/gamepad.html#navigator-interface-extension @@ -125,13 +124,6 @@ interface NavigatorGeolocation { }; Navigator implements NavigatorGeolocation; -// http://www.w3.org/TR/battery-status/#navigatorbattery-interface -partial interface Navigator { - // ChromeOnly to prevent web content from fingerprinting users' batteries. - [Throws, ChromeOnly, Pref="dom.battery.enabled"] - Promise<BatteryManager> getBattery(); -}; - // http://www.w3.org/TR/vibration/#vibration-interface partial interface Navigator { // We don't support sequences in unions yet |