diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-02-28 08:57:48 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-02-28 08:57:48 +0100 |
commit | b19e4e2cf0c1537c8c2a56d0b783d38b6b25de7f (patch) | |
tree | a68253ebc147c85f8359afb0db9bb0129dc357e6 /devtools/client/inspector/rules/models/rule.js | |
parent | f7e146b34388db880d34d4d8082d71f903c6cabe (diff) | |
download | UXP-b19e4e2cf0c1537c8c2a56d0b783d38b6b25de7f.tar UXP-b19e4e2cf0c1537c8c2a56d0b783d38b6b25de7f.tar.gz UXP-b19e4e2cf0c1537c8c2a56d0b783d38b6b25de7f.tar.lz UXP-b19e4e2cf0c1537c8c2a56d0b783d38b6b25de7f.tar.xz UXP-b19e4e2cf0c1537c8c2a56d0b783d38b6b25de7f.zip |
DevTools - inspector - data URL source links and their tooltips are unreadable
https://github.com/MoonchildProductions/moebius/pull/95
Diffstat (limited to 'devtools/client/inspector/rules/models/rule.js')
-rw-r--r-- | devtools/client/inspector/rules/models/rule.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/devtools/client/inspector/rules/models/rule.js b/devtools/client/inspector/rules/models/rule.js index 1a3fa057a..4c978cb58 100644 --- a/devtools/client/inspector/rules/models/rule.js +++ b/devtools/client/inspector/rules/models/rule.js @@ -140,11 +140,18 @@ Rule.prototype = { line, mediaText}) => { let mediaString = mediaText ? " @" + mediaText : ""; let linePart = line > 0 ? (":" + line) : ""; + let decodedHref = href; + + if (decodedHref) { + try { + decodedHref = decodeURIComponent(href); + } catch (e) {} + } let sourceStrings = { - full: (href || CssLogic.l10n("rule.sourceInline")) + linePart + + full: (decodedHref || CssLogic.l10n("rule.sourceInline")) + linePart + mediaString, - short: CssLogic.shortSource({href: href}) + linePart + mediaString + short: CssLogic.shortSource({href: decodedHref}) + linePart + mediaString }; return sourceStrings; |