mirror of https://github.com/gorhill/uBlock.git
Fix deprecated matches-css-after/matches-css-before
This commit is contained in:
parent
92e2b342d4
commit
a24bc50e40
|
@ -98,14 +98,14 @@ class PSelectorMatchesCSSTask extends PSelectorTask {
|
||||||
class PSelectorMatchesCSSAfterTask extends PSelectorMatchesCSSTask {
|
class PSelectorMatchesCSSAfterTask extends PSelectorMatchesCSSTask {
|
||||||
constructor(task) {
|
constructor(task) {
|
||||||
super(task);
|
super(task);
|
||||||
this.pseudo = 'after';
|
this.pseudo = '::after';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class PSelectorMatchesCSSBeforeTask extends PSelectorMatchesCSSTask {
|
class PSelectorMatchesCSSBeforeTask extends PSelectorMatchesCSSTask {
|
||||||
constructor(task) {
|
constructor(task) {
|
||||||
super(task);
|
super(task);
|
||||||
this.pseudo = 'before';
|
this.pseudo = '::before';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue