Chromium Code Reviews| Index: LayoutTests/fast/dom/Geolocation/geofencing-not-implemented.html |
| diff --git a/LayoutTests/fast/dom/Geolocation/geofencing-not-implemented.html b/LayoutTests/fast/dom/Geolocation/geofencing-not-implemented.html |
| index 063e322fb31cd79f11a8c5f45995c6c964a5d9d9..87b65cce177b73740ffd0e1f017fd1822713c0b4 100644 |
| --- a/LayoutTests/fast/dom/Geolocation/geofencing-not-implemented.html |
| +++ b/LayoutTests/fast/dom/Geolocation/geofencing-not-implemented.html |
| @@ -14,9 +14,9 @@ function shouldReject(promise) |
| function() { testPassed("Promise rejected as expected."); }); |
| } |
| -shouldReject(navigator.geolocation.registerRegion(new CircularRegion({latitude: 37.421999, longitude: -122.084015}))); |
| -shouldReject(navigator.geolocation.unregisterRegion("")); |
| -shouldReject(navigator.geolocation.getRegisteredRegions()); |
| +shouldReject(navigator.geofencing.registerRegion(new CircularRegion({latitude: 37.421999, longitude: -122.084015}))); |
|
Michael van Ouwerkerk
2014/08/06 17:10:43
As we now use a separate geofencing module, this t
Marijn Kruisselbrink
2014/08/06 18:27:18
Done.
|
| +shouldReject(navigator.geofencing.unregisterRegion("")); |
| +shouldReject(navigator.geofencing.getRegisteredRegions()); |
| </script> |
| </body> |
| </html> |