From 2acf3a4dd87af5c09fcf513517cb852ff6e909ce Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 18 Aug 2022 11:14:40 +0200 Subject: CssXPath-StarSelector (#4506) * CssXPath-StarSelector Add support for selectors such as `a[href*="example"]` https://developer.mozilla.org/docs/Web/CSS/Attribute_selectors Translated to `.//a[contains(@href,"example")]` Upstream PR: https://github.com/PhpGt/CssXPath/pull/181 * Upstream merged --- lib/phpgt/cssxpath/src/CssXPathException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/phpgt/cssxpath/src/CssXPathException.php') diff --git a/lib/phpgt/cssxpath/src/CssXPathException.php b/lib/phpgt/cssxpath/src/CssXPathException.php index 81ad3ac9d..bd7798243 100644 --- a/lib/phpgt/cssxpath/src/CssXPathException.php +++ b/lib/phpgt/cssxpath/src/CssXPathException.php @@ -3,4 +3,4 @@ namespace Gt\CssXPath; use RuntimeException; -class CssXPathException extends RuntimeException {} \ No newline at end of file +class CssXPathException extends RuntimeException {} -- cgit v1.2.3