Skip to content

Commit

Permalink
Fix typo in text-decoration filter
Browse files Browse the repository at this point in the history
  • Loading branch information
torusrxxx authored Dec 15, 2024
1 parent bb745b9 commit 300cd07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freenet/client/filter/CSSTokenizerFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ public static <T> T[] concat(T[] a, T[] b) {
auxilaryVerifiers[115] = new CSSPropertyVerifier(Arrays.asList("none"),null,null,Arrays.asList("100a101a102"));
auxilaryVerifiers[116] = new CSSPropertyVerifier(Arrays.asList("blink"), null, null, null, true);
// <text-decoration-style>
auxilaryVerifiers[104] = new CSSPropertyVerifier(Arrays.asList("solid", "double", "dotted", "dashed", "wave"), null, null, null, true);
auxilaryVerifiers[104] = new CSSPropertyVerifier(Arrays.asList("solid", "double", "dotted", "dashed", "wavy"), null, null, null, true);

// <text-emphasis-style>
auxilaryVerifiers[105]=new CSSPropertyVerifier(Arrays.asList("filled","open"),null,null,null,true);
Expand Down

0 comments on commit 300cd07

Please sign in to comment.