HomeSort by relevance Sort by last modified time
    Searched refs:navigator (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
enabled.js 1 description("Tests that the navigator.geolocation object is present.");
5 for (var property in navigator) {
12 shouldBeTrue("typeof navigator.geolocation == 'object'");
14 shouldBeTrue("'geolocation' in navigator");
15 shouldBeTrue("navigator.hasOwnProperty('geolocation')");
argument-types.js 36 test('navigator.geolocation.getCurrentPosition()', true);
38 test('navigator.geolocation.getCurrentPosition(undefined)', true);
39 test('navigator.geolocation.getCurrentPosition(null)', true);
40 test('navigator.geolocation.getCurrentPosition({})', true);
41 test('navigator.geolocation.getCurrentPosition(objectThrowingException)', true);
42 test('navigator.geolocation.getCurrentPosition(emptyFunction)', false);
43 test('navigator.geolocation.getCurrentPosition(Math.abs)', false);
44 test('navigator.geolocation.getCurrentPosition(layoutTestController.setGeolocationPermission)', false);
45 test('navigator.geolocation.getCurrentPosition(true)', true);
46 test('navigator.geolocation.getCurrentPosition(42)', true)
    [all...]
notimer-after-unload.js 1 description("Tests that no timers will trigger for navigator.geolocation object after onunload.");
10 navigator.geolocation.getCurrentPosition(
timeout-clear-watch.js 7 var watchId = navigator.geolocation.watchPosition(function() {
14 navigator.geolocation.clearWatch(watchId);
permission-denied-already-clear-watch.js 11 navigator.geolocation.getCurrentPosition(function(p) {
25 var watchId = navigator.geolocation.watchPosition(function(p) {
32 navigator.geolocation.clearWatch(watchId);
clear-watch-invalid-id-crash.js 10 navigator.geolocation.watchPosition(function() {});
11 navigator.geolocation.clearWatch(0);
delayed-permission-allowed-for-multiple-requests.js 15 navigator.geolocation.watchPosition(function() {
29 navigator.geolocation.getCurrentPosition(function() {
multiple-requests.js 18 navigator.geolocation.watchPosition(function(p) {
27 navigator.geolocation.getCurrentPosition(function(p) {
reentrant-permission-denied.js 17 navigator.geolocation.getCurrentPosition(function(p) {
31 navigator.geolocation.getCurrentPosition(function(p) {
maximum-age.js 35 navigator.geolocation.getCurrentPosition(function(p) {
48 navigator.geolocation.getCurrentPosition(function(p) {
62 navigator.geolocation.getCurrentPosition(function(p) {
73 navigator.geolocation.getCurrentPosition(function(p) {
delayed-permission-denied-for-multiple-requests.js 16 navigator.geolocation.watchPosition(function() {
32 navigator.geolocation.getCurrentPosition(function() {
permission-denied-already-error.js 11 navigator.geolocation.getCurrentPosition(function(p) {
28 navigator.geolocation.getCurrentPosition(function(p) {
permission-denied-already-success.js 11 navigator.geolocation.getCurrentPosition(function(p) {
25 navigator.geolocation.getCurrentPosition(function(p) {
reentrant-error.js 14 navigator.geolocation.getCurrentPosition(function(p) {
37 navigator.geolocation.getCurrentPosition(function(p) {
reentrant-success.js 17 navigator.geolocation.getCurrentPosition(function(p) {
41 navigator.geolocation.getCurrentPosition(function(p) {
callback-to-remote-context.js 5 iframe.contentWindow.navigator.geolocation.getCurrentPosition(function() {
callback-to-remote-context2.js 6 iframe.contentWindow.navigator.geolocation.getCurrentPosition(function() {
delayed-permission-denied.js 13 navigator.geolocation.getCurrentPosition(function() {
error.js 13 navigator.geolocation.getCurrentPosition(function(p) {
success.js 16 navigator.geolocation.getCurrentPosition(function(p) {
timeout.js 16 navigator.geolocation.getCurrentPosition(function(p) {
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_context_menu_controller_views.h 48 // |navigator| is used if |browser| is null, and is provided for testing.
55 PageNavigator* navigator,
68 PageNavigator* navigator() const { return navigator_; } function in class:BookmarkContextMenuControllerViews
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8NavigatorCustom.cpp 30 #include "Navigator.h"
48 INC_STATS("DOM.Navigator.webkitGetUserMedia()");
66 Navigator* navigator = V8Navigator::toNative(args.Holder());
67 navigator->webkitGetUserMedia(options, successCallback.release(), errorCallback.release());
106 Navigator* navigator = V8Navigator::toNative(args.Holder()); local
107 if (!navigator->isApplicationInstalled(toWebCoreString(args[0]), callback.release()))
  /external/chromium/chrome/browser/bookmarks/
bookmark_context_menu_controller.h 43 // |navigator| is used if |browser| is null, and is provided for testing.
50 PageNavigator* navigator,
68 PageNavigator* navigator() const { return navigator_; } function in class:BookmarkContextMenuController
  /external/webkit/Source/WebCore/inspector/front-end/
InspectorFrontendHostStub.js 43 var match = navigator.userAgent.match(/Windows NT/);
46 match = navigator.userAgent.match(/Mac OS X/);

Completed in 141 milliseconds

1 2 3 4 5