mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
only try to tint our CSS, otherwise random extensions which have inserted CSS may cause untrappable XSS SecurityErrors to throw
This commit is contained in:
parent
001b9ad7cc
commit
28fddef5f9
1 changed files with 5 additions and 0 deletions
|
@ -78,6 +78,11 @@ function calcCssFixups() {
|
|||
var ss = document.styleSheets[i];
|
||||
// Chromium apparently sometimes returns null here; unsure why.
|
||||
// see $14534907369972FRXBx:matrix.org in HQ
|
||||
// ...ah, it's because there's a third party extension like
|
||||
// privacybadger inserting its own stylesheet in there with a
|
||||
// resource:// URI or something which results in a XSS error.
|
||||
// See also #vector:matrix.org/$145357669685386ebCfr:matrix.org
|
||||
if (!ss.href.endsWith("/bundle.css")) continue;
|
||||
if (!ss.cssRules) continue;
|
||||
for (var j = 0; j < ss.cssRules.length; j++) {
|
||||
var rule = ss.cssRules[j];
|
||||
|
|
Loading…
Reference in a new issue