From 4f2081595e9d1662c512d59b5fcc99a7b8742cba Mon Sep 17 00:00:00 2001 From: Marcos Caceres Date: Tue, 9 Apr 2024 13:39:54 +1000 Subject: [PATCH 1/2] Addition: Expose .toJSON() on GeolocationCoordinates --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 39ac46b..f128d58 100644 --- a/index.html +++ b/index.html @@ -1110,6 +1110,7 @@

readonly attribute double? altitudeAccuracy; readonly attribute double? heading; readonly attribute double? speed; + [Default] object toJSON(); };
From c9c957415a7deec38beb24ec44a669cfe633fe90 Mon Sep 17 00:00:00 2001 From: Marcos Caceres Date: Thu, 11 Apr 2024 09:15:34 +1000 Subject: [PATCH 2/2] Addition: expose .toJSON() on GeolocationPosition --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index f128d58..8bc679d 100644 --- a/index.html +++ b/index.html @@ -1029,6 +1029,7 @@

interface GeolocationPosition { readonly attribute GeolocationCoordinates coords; readonly attribute EpochTimeStamp timestamp; + [Default] object toJSON(); };