Skip to content

Commit

Permalink
Add inline-start,inline-end values of float CSS attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
torusrxxx committed Oct 19, 2024
1 parent 8617f30 commit ba0d911
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 @@ -989,7 +989,7 @@ else if("empty-cells".equalsIgnoreCase(element))
}
else if("float".equalsIgnoreCase(element))
{
elementVerifiers.put(element,new CSSPropertyVerifier(Arrays.asList("left","right","none"),ElementInfo.VISUALMEDIA));
elementVerifiers.put(element,new CSSPropertyVerifier(Arrays.asList("left","right","none","inline-start","inline-end"),ElementInfo.VISUALMEDIA));
allelementVerifiers.remove(element);
} else if ("flex".equalsIgnoreCase(element)) {
// flex: none | <flex-grow> <flex-shrink>? || <flex-basis>
Expand Down

0 comments on commit ba0d911

Please sign in to comment.