Merge styles case insensitive

This commit is contained in:
M66B 2023-03-05 23:00:33 +01:00
parent 308904d505
commit 3917be6c77
1 changed files with 2 additions and 2 deletions

View File

@ -1759,14 +1759,14 @@ public class HtmlHelper {
ElementSelectorImpl eselector = (ElementSelectorImpl) selector;
if (tag == null
? eselector.getLocalName() == null
: tag.equals(eselector.getLocalName()))
: tag.equalsIgnoreCase(eselector.getLocalName()))
style = mergeStyles(style, srule.getStyle().getCssText());
break;
case Selector.SAC_CONDITIONAL_SELECTOR:
ConditionalSelectorImpl cselector = (ConditionalSelectorImpl) selector;
if (cselector.getCondition().getConditionType() == SAC_CLASS_CONDITION) {
ClassConditionImpl ccondition = (ClassConditionImpl) cselector.getCondition();
if (clazz.equals(ccondition.getValue()))
if (clazz.equalsIgnoreCase(ccondition.getValue()))
style = mergeStyles(style, srule.getStyle().getCssText());
}
break;