зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset 73abb8b1b4b5 (bug 1708125) for xpcshell failures in browser/components/urlbar/tests/unit/test_avoid_stripping_to_empty_tokens.js. CLOSED TREE
This commit is contained in:
Родитель
bf24e6a36f
Коммит
0a5ef97272
|
@ -202,6 +202,14 @@
|
|||
<string>https</string>
|
||||
</array>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CFBundleURLName</key>
|
||||
<string>ftp URL</string>
|
||||
<key>CFBundleURLSchemes</key>
|
||||
<array>
|
||||
<string>ftp</string>
|
||||
</array>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CFBundleURLName</key>
|
||||
<string>file URL</string>
|
||||
|
|
|
@ -1130,6 +1130,6 @@ function checkProtocol(img) {
|
|||
var url = img[COL_IMAGE_ADDRESS];
|
||||
return (
|
||||
/^data:image\//i.test(url) ||
|
||||
/^(https?|file|about|chrome|resource):/.test(url)
|
||||
/^(https?|ftp|file|about|chrome|resource):/.test(url)
|
||||
);
|
||||
}
|
||||
|
|
|
@ -219,6 +219,7 @@ const kProtocolsWithIcons = [
|
|||
"about:",
|
||||
"http:",
|
||||
"https:",
|
||||
"ftp:",
|
||||
];
|
||||
function iconHelper(url) {
|
||||
if (typeof url == "string") {
|
||||
|
|
|
@ -89,7 +89,7 @@ const {
|
|||
FIXUP_FLAG_FIX_SCHEME_TYPOS,
|
||||
} = Ci.nsIURIFixup;
|
||||
|
||||
const COMMON_PROTOCOLS = ["http", "https", "file"];
|
||||
const COMMON_PROTOCOLS = ["http", "https", "ftp", "file"];
|
||||
|
||||
// Regex used to identify user:password tokens in url strings.
|
||||
// This is not a strict valid characters check, because we try to fixup this
|
||||
|
|
|
@ -2513,6 +2513,7 @@ class Document : public nsINode,
|
|||
|
||||
return !NodePrincipal()->SchemeIs("http") &&
|
||||
!NodePrincipal()->SchemeIs("https") &&
|
||||
!NodePrincipal()->SchemeIs("ftp") &&
|
||||
!NodePrincipal()->SchemeIs("file");
|
||||
}
|
||||
|
||||
|
|
|
@ -257,7 +257,8 @@ bool ReferrerInfo::IsReferrerSchemeAllowed(nsIURI* aReferrer) {
|
|||
return false;
|
||||
}
|
||||
|
||||
return scheme.EqualsIgnoreCase("https") || scheme.EqualsIgnoreCase("http");
|
||||
return scheme.EqualsIgnoreCase("https") || scheme.EqualsIgnoreCase("http") ||
|
||||
scheme.EqualsIgnoreCase("ftp");
|
||||
}
|
||||
|
||||
/* static */
|
||||
|
@ -1198,7 +1199,7 @@ nsresult ReferrerInfo::ComputeReferrer(nsIHttpChannel* aChannel) {
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
// Enforce Referrer allowlist, only http, https scheme are allowed
|
||||
// Enforce Referrer allowlist, only http, https, ftp scheme are allowed
|
||||
if (!IsReferrerSchemeAllowed(mOriginalReferrer)) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
|
@ -154,7 +154,7 @@ class ReferrerInfo : public nsIReferrerInfo {
|
|||
|
||||
/**
|
||||
* Check whether the given referrer's scheme is allowed to be computed and
|
||||
* sent. The allowlist schemes are: http, https.
|
||||
* sent. The allowlist schemes are: http, https, ftp.
|
||||
*/
|
||||
static bool IsReferrerSchemeAllowed(nsIURI* aReferrer);
|
||||
|
||||
|
@ -368,7 +368,7 @@ class ReferrerInfo : public nsIReferrerInfo {
|
|||
bool IsPolicyOverrided() { return mOverridePolicyByDefault; }
|
||||
|
||||
/*
|
||||
* Get origin string from a given valid referrer URI (http, https)
|
||||
* Get origin string from a given valid referrer URI (http, https, ftp)
|
||||
*
|
||||
* @aReferrer - the full referrer URI
|
||||
* @aResult - the resulting aReferrer in string format.
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
12=Performing a TLS handshake to %1$S…
|
||||
13=The TLS handshake finished for %1$S…
|
||||
|
||||
27=Beginning FTP transaction…
|
||||
28=Finished FTP transaction
|
||||
|
||||
RepostFormData=This web page is being redirected to a new location. Would you like to resend the form data you have typed to the new location?
|
||||
|
||||
# Directory listing strings
|
||||
|
|
|
@ -201,6 +201,32 @@ function run_test() {
|
|||
info.domain = "";
|
||||
info.username = "";
|
||||
info.password = "";
|
||||
|
||||
// 5: FTP
|
||||
var uri2 = NetUtil.newURI("ftp://" + host);
|
||||
var ftpchan = NetUtil.newChannel({
|
||||
uri: uri2,
|
||||
loadUsingSystemPrincipal: true,
|
||||
});
|
||||
|
||||
prompt1 = new Prompt1();
|
||||
prompt1.rv = expectedRV;
|
||||
prompt1.scheme = "ftp";
|
||||
|
||||
wrapper = adapter.createAdapter(prompt1);
|
||||
var rv = wrapper.promptAuth(ftpchan, 0, info);
|
||||
Assert.equal(rv, prompt1.rv);
|
||||
Assert.equal(prompt1.called, CALLED_PROMPTUP);
|
||||
|
||||
if (rv) {
|
||||
Assert.equal(info.domain, "");
|
||||
Assert.equal(info.username, prompt1.user);
|
||||
Assert.equal(info.password, prompt1.pw);
|
||||
}
|
||||
|
||||
info.domain = "";
|
||||
info.username = "";
|
||||
info.password = "";
|
||||
}
|
||||
do_tests(true);
|
||||
do_tests(false);
|
||||
|
|
Загрузка…
Ссылка в новой задаче