Bug 1529591 Comment 31 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

The test failure is in non-e10s mode, not sure yet what the correct approach is here.
The test failure is in non-e10s mode, not sure yet what the correct approach is here.

Perhaps doing a special case for non-e10s mode:
```
bool Geolocation::RegisterRequestWithPrompt(nsGeolocationRequest* request) {
#ifdef MOZ_WIDGET_COCOA
  if (!BrowserTabsRemoteAutostart()) { // non e10s mode
    if (!isMacGeoSystemPermissionEnabled()) {
      return false;
    }
    return RegisterRequestWithPromptImpl(request);
  }
```

Back to Bug 1529591 Comment 31