| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../../resources/js-test.js"></script> | |
| 5 <script src="../../../resources/mojo-helpers.js"></script> | |
| 6 <script src="resources/geolocation-mock.js"></script> | |
| 7 </head> | |
| 8 <body> | |
| 9 <script> | |
| 10 description("Tests that reentrant calls to Geolocation methods from the success
callback are OK."); | |
| 11 | |
| 12 var mockLatitude = 51.478; | |
| 13 var mockLongitude = -0.166; | |
| 14 var mockAccuracy = 100.0; | |
| 15 | |
| 16 var position; | |
| 17 | |
| 18 geolocationServiceMock.then(mock => { | |
| 19 mock.setGeolocationPermission(true); | |
| 20 mock.setGeolocationPosition(mockLatitude, | |
| 21 mockLongitude, | |
| 22 mockAccuracy); | |
| 23 | |
| 24 var successCallbackInvoked = false; | |
| 25 navigator.geolocation.getCurrentPosition(function(p) { | |
| 26 if (successCallbackInvoked) { | |
| 27 testFailed('Success callback invoked unexpectedly'); | |
| 28 finishJSTest(); | |
| 29 } | |
| 30 successCallbackInvoked = true; | |
| 31 | |
| 32 position = p; | |
| 33 shouldBe('position.coords.latitude', 'mockLatitude'); | |
| 34 shouldBe('position.coords.longitude', 'mockLongitude'); | |
| 35 shouldBe('position.coords.accuracy', 'mockAccuracy'); | |
| 36 debug(''); | |
| 37 continueTest(); | |
| 38 }, function(e) { | |
| 39 testFailed('Error callback invoked unexpectedly'); | |
| 40 finishJSTest(); | |
| 41 }); | |
| 42 | |
| 43 function continueTest() { | |
| 44 mock.setGeolocationPosition(++mockLatitude, | |
| 45 ++mockLongitude, | |
| 46 ++mockAccuracy); | |
| 47 | |
| 48 navigator.geolocation.getCurrentPosition(function(p) { | |
| 49 position = p; | |
| 50 shouldBe('position.coords.latitude', 'mockLatitude'); | |
| 51 shouldBe('position.coords.longitude', 'mockLongitude'); | |
| 52 shouldBe('position.coords.accuracy', 'mockAccuracy'); | |
| 53 finishJSTest(); | |
| 54 }, function(e) { | |
| 55 testFailed('Error callback invoked unexpectedly'); | |
| 56 finishJSTest(); | |
| 57 }); | |
| 58 } | |
| 59 }); | |
| 60 | |
| 61 window.jsTestIsAsync = true; | |
| 62 </script> | |
| 63 </body> | |
| 64 </html> | |
| OLD | NEW |