Skip to content

Commit aa279a3

Browse files
Release build 4.39.0 [ci release]
1 parent 3856898 commit aa279a3

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Sources/ContentScopeScripts/dist/contentScope.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5488,7 +5488,7 @@
54885488
selector = selector.concat(rule.selector);
54895489
}
54905490
});
5491-
const styleTagProperties = "{display:none!important;min-height:0!important;height:0!important;}";
5491+
const styleTagProperties = "display:none!important;min-height:0!important;height:0!important;";
54925492
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`;
54935493
injectGlobalStyles(styleTagContents);
54945494
}

build/android/contentScope.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7258,7 +7258,7 @@
72587258
selector = selector.concat(rule.selector);
72597259
}
72607260
});
7261-
const styleTagProperties = '{display:none!important;min-height:0!important;height:0!important;}';
7261+
const styleTagProperties = 'display:none!important;min-height:0!important;height:0!important;';
72627262
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`;
72637263

72647264
injectGlobalStyles(styleTagContents);

build/chrome-mv3/inject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7549,7 +7549,7 @@
75497549
selector = selector.concat(rule.selector);
75507550
}
75517551
});
7552-
const styleTagProperties = '{display:none!important;min-height:0!important;height:0!important;}';
7552+
const styleTagProperties = 'display:none!important;min-height:0!important;height:0!important;';
75537553
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`;
75547554

75557555
injectGlobalStyles(styleTagContents);

build/chrome/inject.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/contentScope.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7212,7 +7212,7 @@
72127212
selector = selector.concat(rule.selector);
72137213
}
72147214
});
7215-
const styleTagProperties = '{display:none!important;min-height:0!important;height:0!important;}';
7215+
const styleTagProperties = 'display:none!important;min-height:0!important;height:0!important;';
72167216
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`;
72177217

72187218
injectGlobalStyles(styleTagContents);

build/firefox/inject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7601,7 +7601,7 @@
76017601
selector = selector.concat(rule.selector);
76027602
}
76037603
});
7604-
const styleTagProperties = '{display:none!important;min-height:0!important;height:0!important;}';
7604+
const styleTagProperties = 'display:none!important;min-height:0!important;height:0!important;';
76057605
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`;
76067606

76077607
injectGlobalStyles(styleTagContents);

build/integration/contentScope.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7212,7 +7212,7 @@
72127212
selector = selector.concat(rule.selector);
72137213
}
72147214
});
7215-
const styleTagProperties = '{display:none!important;min-height:0!important;height:0!important;}';
7215+
const styleTagProperties = 'display:none!important;min-height:0!important;height:0!important;';
72167216
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`;
72177217

72187218
injectGlobalStyles(styleTagContents);

build/windows/contentScope.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7608,7 +7608,7 @@
76087608
selector = selector.concat(rule.selector);
76097609
}
76107610
});
7611-
const styleTagProperties = '{display:none!important;min-height:0!important;height:0!important;}';
7611+
const styleTagProperties = 'display:none!important;min-height:0!important;height:0!important;';
76127612
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`;
76137613

76147614
injectGlobalStyles(styleTagContents);

src/features/element-hiding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ function injectStyleTag (rules) {
249249
selector = selector.concat(rule.selector)
250250
}
251251
})
252-
const styleTagProperties = '{display:none!important;min-height:0!important;height:0!important;}'
252+
const styleTagProperties = 'display:none!important;min-height:0!important;height:0!important;'
253253
const styleTagContents = `${forgivingSelector(selector)} {${styleTagProperties}}`
254254

255255
injectGlobalStyles(styleTagContents)

0 commit comments

Comments
 (0)