summaryrefslogtreecommitdiff
path: root/caps
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-03 21:23:39 +0100
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-03 21:23:39 +0100
commit85a77e7cb7d2702703cab067cf91a1df5c5e4cc0 (patch)
tree8a9f631bae906170978c5667f4c9302b899dd441 /caps
parentdfa5d2c460a84afd0c4aa1d3caa0c04cb3b985ed (diff)
downloaduxp-85a77e7cb7d2702703cab067cf91a1df5c5e4cc0.tar.gz
The origin should not contain the ref part of the URL
Diffstat (limited to 'caps')
-rw-r--r--caps/nsPrincipal.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/caps/nsPrincipal.cpp b/caps/nsPrincipal.cpp
index 4cb4723694..f890610430 100644
--- a/caps/nsPrincipal.cpp
+++ b/caps/nsPrincipal.cpp
@@ -184,8 +184,23 @@ nsPrincipal::GetOriginForURI(nsIURI* aURI, nsACString& aOrigin)
// origin string
nsCOMPtr<nsIStandardURL> standardURL = do_QueryInterface(origin);
NS_ENSURE_TRUE(standardURL, NS_ERROR_FAILURE);
+
rv = origin->GetAsciiSpec(aOrigin);
NS_ENSURE_SUCCESS(rv, rv);
+
+ // The origin, when taken from the spec, should not contain the ref part of
+ // the URL.
+
+ int32_t pos = aOrigin.FindChar('?');
+ int32_t hashPos = aOrigin.FindChar('#');
+
+ if (hashPos != kNotFound && (pos == kNotFound || hashPos < pos)) {
+ pos = hashPos;
+ }
+
+ if (pos != kNotFound) {
+ aOrigin.Truncate(pos);
+ }
}
return NS_OK;