Backed out changeset 8b1c50cdb50c (bug 1072859) for failing devtools/client/responsive.html/test/browser/browser_permission_doorhanger.js. r=backout

This commit is contained in:
Sebastian Hengst 2017-03-09 00:46:17 +01:00
parent 4be69cc373
commit b1ffff0ec9
15 changed files with 30 additions and 23 deletions

View File

@ -1289,6 +1289,11 @@ pref("geo.provider.use_gpsd", true);
#endif
// We keep allowing non-HTTPS geo requests on all the release
// channels, for now.
// TODO: default to false (or remove altogether) for #1072859.
pref("geo.security.allowinsecure", true);
// Necko IPC security checks only needed for app isolation for cookies/cache/etc:
// currently irrelevant for desktop e10s
pref("network.disable.ipc.security", true);

View File

@ -6,7 +6,7 @@
// control inside the private browsing mode.
add_task(function* test() {
const testPageURL = "https://example.com/browser/" +
const testPageURL = "http://mochi.test:8888/browser/" +
"browser/components/privatebrowsing/test/browser/browser_privatebrowsing_geoprompt_page.html";
function checkGeolocation(aPrivateMode, aWindow) {

View File

@ -1172,7 +1172,9 @@ Geolocation::IsAlreadyCleared(nsGeolocationRequest* aRequest)
bool
Geolocation::ShouldBlockInsecureRequests() const
{
if (Preferences::GetBool(PREF_GEO_SECURITY_ALLOWINSECURE, false)) {
// TODO: Also remove all the *_SECURE_ORIGIN Telemetry probes before
// landing the patch for #1072859. Also default to false.
if (Preferences::GetBool(PREF_GEO_SECURITY_ALLOWINSECURE, true)) {
return false;
}
@ -1186,7 +1188,7 @@ Geolocation::ShouldBlockInsecureRequests() const
return false;
}
if (!nsGlobalWindow::Cast(win)->IsSecureContextIfOpenerIgnored()) {
if (!nsGlobalWindow::Cast(win)->IsSecureContext()) {
nsContentUtils::ReportToConsole(nsIScriptError::errorFlag,
NS_LITERAL_CSTRING("DOM"), doc,
nsContentUtils::eDOM_PROPERTIES,

View File

@ -4,7 +4,7 @@
*/
"use strict";
const TEST_URI = "https://example.com/" +
const TEST_URI = "http://example.com/" +
"browser/dom/tests/browser/position.html";
add_task(function* testDismissHanger() {

View File

@ -87994,9 +87994,9 @@
{}
]
],
"geolocation-API/PositionOptions.https.html": [
"geolocation-API/PositionOptions.html": [
[
"/geolocation-API/PositionOptions.https.html",
"/geolocation-API/PositionOptions.html",
{}
]
],
@ -88006,9 +88006,9 @@
{}
]
],
"geolocation-API/getCurrentPosition_IDL.https.html": [
"geolocation-API/getCurrentPosition_IDL.html": [
[
"/geolocation-API/getCurrentPosition_IDL.https.html",
"/geolocation-API/getCurrentPosition_IDL.html",
{}
]
],
@ -88018,15 +88018,15 @@
{}
]
],
"geolocation-API/getCurrentPosition_permission_allow.https.html": [
"geolocation-API/getCurrentPosition_permission_allow.html": [
[
"/geolocation-API/getCurrentPosition_permission_allow.https.html",
"/geolocation-API/getCurrentPosition_permission_allow.html",
{}
]
],
"geolocation-API/getCurrentPosition_permission_deny.https.html": [
"geolocation-API/getCurrentPosition_permission_deny.html": [
[
"/geolocation-API/getCurrentPosition_permission_deny.https.html",
"/geolocation-API/getCurrentPosition_permission_deny.html",
{}
]
],
@ -88042,9 +88042,9 @@
{}
]
],
"geolocation-API/watchPosition_permission_deny.https.html": [
"geolocation-API/watchPosition_permission_deny.html": [
[
"/geolocation-API/watchPosition_permission_deny.https.html",
"/geolocation-API/watchPosition_permission_deny.html",
{}
]
],
@ -164783,7 +164783,7 @@
"0657e9c1d1281428355eb545ba0b4552dc8900ec",
"support"
],
"geolocation-API/PositionOptions.https.html": [
"geolocation-API/PositionOptions.html": [
"3ed405ebbe4b6fde9dfa6b3426c52c7025efd84c",
"testharness"
],
@ -164791,7 +164791,7 @@
"281cdbc3d81e498514a0cca3e839c33e1b217974",
"testharness"
],
"geolocation-API/getCurrentPosition_IDL.https.html": [
"geolocation-API/getCurrentPosition_IDL.html": [
"5c7c8f7406a82140384687bfc66b2ef1d8bdc259",
"testharness"
],
@ -164807,7 +164807,7 @@
"e75a1408296aeed55b5edee35d86cb523cce5a4c",
"manual"
],
"geolocation-API/getCurrentPosition_permission_allow.https.html": [
"geolocation-API/getCurrentPosition_permission_allow.html": [
"695f80f5a06279b3a0bdd137e6a402da66a5eeee",
"testharness"
],
@ -164835,7 +164835,7 @@
"39f9b8442320f67323f55f26a417deb2ae12eacf",
"manual"
],
"geolocation-API/watchPosition_permission_deny.https.html": [
"geolocation-API/watchPosition_permission_deny.html": [
"8da70bf5b65ace1e8a26e458d6c011c6183c5501",
"testharness"
],

View File

@ -1,4 +1,4 @@
[PositionOptions.https.html]
[PositionOptions.html]
type: testharness
expected: TIMEOUT
[Set timeout and maximumAge to 0, check that timeout error raised (getCurrentPosition)]

View File

@ -1,4 +1,4 @@
[getCurrentPosition_IDL.https.html]
[getCurrentPosition_IDL.html]
type: testharness
expected: TIMEOUT
[getCurrentPosition success callback tests]

View File

@ -1,4 +1,4 @@
[getCurrentPosition_permission_allow.https.html]
[getCurrentPosition_permission_allow.html]
type: testharness
expected: TIMEOUT
[User allows access, check that success callback is called or error callback is called with correct code.]

View File

@ -1,4 +1,4 @@
[getCurrentPosition_permission_deny.https.html]
[getCurrentPosition_permission_deny.html]
type: testharness
expected: TIMEOUT
[User denies access, check that error callback is called with correct code]

View File

@ -1,4 +1,4 @@
[watchPosition_permission_deny.https.html]
[watchPosition_permission_deny.html]
type: testharness
expected: TIMEOUT
[Check that watchPosition returns synchronously before any callbacks are invoked.]