Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/enabled.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 description("Tests that the navigator.geolocation object is present.");
2
3 function hasGeolocationProperty()
4 {
5 for (var property in navigator) {
6 if (property == "geolocation")
7 return true;
8 }
9 return false;
10 }
11
12 shouldBeTrue("typeof navigator.geolocation == 'object'");
13 shouldBeTrue("hasGeolocationProperty()");
14 shouldBeTrue("'geolocation' in navigator");
15
16 window.jsTestIsAsync = false;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698