Skip to content

Commit

Permalink
method org.htmlunit.javascript.host.css.CSSStyleSheet.validateSelecto…
Browse files Browse the repository at this point in the history
…rs(SelectorList, int, DomNode) does not forward the SelectorList to the implementation (regression from version 3.7.0)
  • Loading branch information
rbri committed Feb 9, 2024
1 parent ac576d0 commit fade164
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

<body>
<release version="3.11.0" date="February xx, 2024" description="Chrome/Edge 121, Firefox 122, many Neko improvements, Bugfixes">
<action type="fix" dev="rbri">
Method org.htmlunit.javascript.host.css.CSSStyleSheet.validateSelectors(SelectorList, int, DomNode) does not
forward the SelectorList to the implementation (regression from version 3.7.0)
</action>
<action type="update" dev="rbri">
Upgrade commons-codec to 1.16.1.
</action>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ public String getUri() {
@Deprecated
public static void validateSelectors(final SelectorList selectorList, final int documentMode,
final DomNode domNode) throws CSSException {
CssStyleSheet.validateSelectors(null, documentMode, domNode);
CssStyleSheet.validateSelectors(selectorList, documentMode, domNode);
}

private void initCssRules() {
Expand Down

0 comments on commit fade164

Please sign in to comment.