blob: f0070707efbbabfaf2c342639f27a6e795c2d2d9 [file] [log] [blame]
<body></body>
<script src=geolocation-test.js></script>
<script>
test("navigator.geolocation === undefined");
test("navigator.geolocation == null");
var hasGeolocationProperty = false;
for (var property in navigator) {
hasGeolocationProperty = (property == "geolocation");
if (hasGeolocationProperty)
break;
}
test("hasGeolocationProperty == false");
test("'geolocation' in navigator == false");
test("navigator.hasOwnProperty('geolocation') == false");
endTest();
</script>