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

Unified Diff: Source/devtools/front_end/common/ParsedURL.js

Issue 656453002: DevTools: [SSP] show links for matched styles with spaces in source URL (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline Created 6 years, 2 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
Index: Source/devtools/front_end/common/ParsedURL.js
diff --git a/Source/devtools/front_end/common/ParsedURL.js b/Source/devtools/front_end/common/ParsedURL.js
index 7e9c73af7706b3287916f403edf0a93f434393b7..43ad46ec94c512d64d1c859435c373bf8e8c6ed1 100644
--- a/Source/devtools/front_end/common/ParsedURL.js
+++ b/Source/devtools/front_end/common/ParsedURL.js
@@ -90,9 +90,9 @@ WebInspector.ParsedURL = function(url)
* @param {string} url
* @return {!Array.<string>}
*/
-WebInspector.ParsedURL.splitURL = function(url)
+WebInspector.ParsedURL.splitURLIntoPathComponents = function(url)
{
- var parsedURL = new WebInspector.ParsedURL(url);
+ var parsedURL = new WebInspector.ParsedURL(decodeURI(url));
var origin;
var folderPath;
var name;
« no previous file with comments | « Source/devtools/front_end/bindings/NetworkWorkspaceBinding.js ('k') | Source/devtools/front_end/workspace/Workspace.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698