mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
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>
11 lines
474 B
Rust
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;
|