Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Unified Diff: third_party/WebKit/Source/core/loader/TextTrackLoader.cpp

Issue 2731953002: Don't double-resolve URL in TextTrackLoader::load (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/loader/TextTrackLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp b/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp
index d20635fb4385ebd340bfcd9bb0ae8e76755ed4c2..577d13a977c8180ab5653f0ad84a99f941a5a136 100644
--- a/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp
@@ -125,7 +125,7 @@ bool TextTrackLoader::load(const KURL& url,
CrossOriginAttributeValue crossOrigin) {
cancelLoad();
- FetchRequest cueRequest(ResourceRequest(document().completeURL(url)),
+ FetchRequest cueRequest(ResourceRequest(url),
FetchInitiatorTypeNames::texttrack);
if (crossOrigin != CrossOriginAttributeNotSet) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698