mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
10 lines
347 B
Plaintext
10 lines
347 B
Plaintext
// https://w3c.github.io/geolocation/#dom-geolocationpositionerror
|
|
[Exposed=Window]
|
|
interface GeolocationPositionError {
|
|
const unsigned short PERMISSION_DENIED = 1;
|
|
const unsigned short POSITION_UNAVAILABLE = 2;
|
|
const unsigned short TIMEOUT = 3;
|
|
readonly attribute unsigned short code;
|
|
readonly attribute DOMString message;
|
|
};
|