1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Fix static filtering parser's validation of selectors/styles

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/2170#issuecomment-1207921464
This commit is contained in:
Raymond Hill 2022-08-08 12:04:17 -04:00
parent a69250ba82
commit cd50f76e74
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1487,12 +1487,17 @@ Parser.prototype.SelectorCompiler = class {
// selector is declarative or not.
// https://github.com/uBlockOrigin/uBlock-issues/issues/1806#issuecomment-963278382
// Forbid multiple and unexpected CSS style declarations.
// https://github.com/uBlockOrigin/uBlock-issues/issues/2170#issuecomment-1207921464
// Assigning text content to the `style` element resets the `disabled`
// state of the sheet, so we need to explicitly disable it each time we
// assign new text.
sheetSelectable(s) {
if ( this.reCommonSelector.test(s) ) { return true; }
if ( this.cssValidatorElement === null ) { return true; }
let valid = false;
try {
this.cssValidatorElement.childNodes[0].nodeValue = `_z + ${s}{color:red;} _z{color:red;}`;
this.cssValidatorElement.sheet.disabled = true;
const rules = this.cssValidatorElement.sheet.cssRules;
valid = rules.length === 2 &&
rules[0].style.cssText !== '' &&
@ -1636,6 +1641,7 @@ Parser.prototype.SelectorCompiler = class {
let valid = false;
try {
this.cssValidatorElement.childNodes[0].nodeValue = `_z{${s}} _z{color:red;}`;
this.cssValidatorElement.sheet.disabled = true;
const rules = this.cssValidatorElement.sheet.cssRules;
valid = rules.length >= 2 &&
rules[0].style.cssText !== '' &&