mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 08:33:19 +00:00
9 lines
347 B
Text
9 lines
347 B
Text
// 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;
|
|
};
|