ladybird/Libraries/LibWeb/Geolocation/GeolocationPositionError.idl

10 lines
347 B
Text
Raw Normal View History

2025-06-19 15:28:02 +02:00
// 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;
};