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

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

Issue 821303006: bindings: Fixes layouttests when moving attributes to prototype chains. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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 | Annotate | Revision Log
OLDNEW
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;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698