Files
servo/components/script/dom/geolocation/mod.rs
Ashwin Naren 65588cd5df script: Stubs for geolocation interfaces (#39584)
Needed for #39526; stubs out all the necessary interface from
https://www.w3.org/TR/geolocation/.

Testing: WPT

Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
2025-10-02 04:17:36 +00:00

11 lines
474 B
Rust

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#[expect(clippy::module_inception, reason = "The interface name is Geolocation")]
pub(crate) mod geolocation;
pub(crate) use geolocation::Geolocation;
pub(crate) mod geolocationcoordinates;
pub(crate) mod geolocationposition;
pub(crate) mod geolocationpositionerror;