html-validate 9.5.0 → 9.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/core.js CHANGED
@@ -2875,7 +2875,7 @@ class HtmlElement extends DOMNode {
2875
2875
  if (!selectorList) {
2876
2876
  return;
2877
2877
  }
2878
- for (const selector of selectorList.split(/,\s*/)) {
2878
+ for (const selector of selectorList.split(/(?<!\\),\s*/)) {
2879
2879
  const pattern = new Selector(selector);
2880
2880
  yield* pattern.match(this);
2881
2881
  }
@@ -11730,7 +11730,7 @@ class EventHandler {
11730
11730
  }
11731
11731
 
11732
11732
  const name = "html-validate";
11733
- const version = "9.5.0";
11733
+ const version = "9.5.1";
11734
11734
  const bugs = "https://gitlab.com/html-validate/html-validate/issues/new";
11735
11735
 
11736
11736
  function freeze(src) {