Skip to content

Commit

Permalink
Support CSS pseudo-element checked
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneBab committed Dec 10, 2022
1 parent db8ee9a commit 135a9e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/freenet/client/filter/ElementInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ public class ElementInfo {
"visited",
"hover",
"active",
"checked",
"focus",
"focus-within",
"lang",
Expand Down
1 change: 1 addition & 0 deletions test/freenet/client/filter/CSSParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public class CSSParserTest {
CSS1_SELECTOR.put("h1:focus {}" ,"h1:focus");
CSS1_SELECTOR.put("h1:first-line {}" ,"h1:first-line");
CSS1_SELECTOR.put("h1:first-letter {}" ,"h1:first-letter");
CSS1_SELECTOR.put("input:checked {}" ,"input:checked");



Expand Down

0 comments on commit 135a9e0

Please sign in to comment.