summaryrefslogtreecommitdiffstats
path: root/devtools/shared
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-02-28 08:57:48 +0100
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-02-28 08:57:48 +0100
commitb19e4e2cf0c1537c8c2a56d0b783d38b6b25de7f (patch)
treea68253ebc147c85f8359afb0db9bb0129dc357e6 /devtools/shared
parentf7e146b34388db880d34d4d8082d71f903c6cabe (diff)
downloadUXP-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/shared')
-rw-r--r--devtools/shared/inspector/css-logic.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/devtools/shared/inspector/css-logic.js b/devtools/shared/inspector/css-logic.js
index c8cdd2fdb..901b7a189 100644
--- a/devtools/shared/inspector/css-logic.js
+++ b/devtools/shared/inspector/css-logic.js
@@ -30,6 +30,8 @@
"use strict";
+const MAX_DATA_URL_LENGTH = 40;
+
/**
* Provide access to the style information in a page.
* CssLogic uses the standard DOM API, and the Gecko inIDOMUtils API to access
@@ -103,6 +105,13 @@ exports.shortSource = function (sheet) {
return exports.l10n("rule.sourceInline");
}
+ // If the sheet is a data URL, return a trimmed version of it.
+ let dataUrl = sheet.href.trim().match(/^data:.*?,((?:.|\r|\n)*)$/);
+ if (dataUrl) {
+ return dataUrl[1].length > MAX_DATA_URL_LENGTH ?
+ `${dataUrl[1].substr(0, MAX_DATA_URL_LENGTH - 1)}…` : dataUrl[1];
+ }
+
// We try, in turn, the filename, filePath, query string, whole thing
let url = {};
try {
@@ -123,8 +132,7 @@ exports.shortSource = function (sheet) {
return url.query;
}
- let dataUrl = sheet.href.match(/^(data:[^,]*),/);
- return dataUrl ? dataUrl[1] : sheet.href;
+ return sheet.href;
};
const TAB_CHARS = "\t";