mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
11 lines
356 B
Plaintext
11 lines
356 B
Plaintext
#import <Geolocation/GeolocationCoordinates.idl>
|
|
#import <HighResolutionTime/EpochTimeStamp.idl>
|
|
|
|
// https://w3c.github.io/geolocation/#position_interface
|
|
[Exposed=Window, SecureContext]
|
|
interface GeolocationPosition {
|
|
readonly attribute GeolocationCoordinates coords;
|
|
readonly attribute EpochTimeStamp timestamp;
|
|
[Default] object toJSON();
|
|
};
|