These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
258 B
Text
7 lines
258 B
Text
// https://w3c.github.io/geolocation/#position_interface
|
|
[Exposed=Window, SecureContext]
|
|
interface GeolocationPosition {
|
|
readonly attribute GeolocationCoordinates coords;
|
|
readonly attribute EpochTimeStamp timestamp;
|
|
[Default] object toJSON();
|
|
};
|