| OLD | NEW |
| 1 description("Tests that the navigator.geolocation object is present."); | 1 description("Tests that the navigator.geolocation object is present."); |
| 2 | 2 |
| 3 function hasGeolocationProperty() | 3 function hasGeolocationProperty() |
| 4 { | 4 { |
| 5 for (var property in navigator) { | 5 for (var property in navigator) { |
| 6 if (property == "geolocation") | 6 if (property == "geolocation") |
| 7 return true; | 7 return true; |
| 8 } | 8 } |
| 9 return false; | 9 return false; |
| 10 } | 10 } |
| 11 | 11 |
| 12 shouldBeTrue("typeof navigator.geolocation == 'object'"); | 12 shouldBeTrue("typeof navigator.geolocation == 'object'"); |
| 13 shouldBeTrue("hasGeolocationProperty()"); | 13 shouldBeTrue("hasGeolocationProperty()"); |
| 14 shouldBeTrue("'geolocation' in navigator"); | 14 shouldBeTrue("'geolocation' in navigator"); |
| 15 shouldBeTrue("navigator.hasOwnProperty('geolocation')"); | |
| 16 | 15 |
| 17 window.jsTestIsAsync = false; | 16 window.jsTestIsAsync = false; |
| OLD | NEW |