From 449461355388ed21bfbffcf45ac12fc9e382262f Mon Sep 17 00:00:00 2001 From: Franck Ranaivo-Harisoa Date: Thu, 2 Mar 2023 12:13:53 +0100 Subject: [PATCH] Add documentation for https://github.com/symfony/symfony/pull/49388 --- components/css_selector.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/css_selector.rst b/components/css_selector.rst index 649a34293a4..e18c8d48df7 100644 --- a/components/css_selector.rst +++ b/components/css_selector.rst @@ -96,7 +96,7 @@ Pseudo-classes are partially supported: * Not supported: ``*:first-of-type``, ``*:last-of-type``, ``*:nth-of-type`` and ``*:nth-last-of-type`` (all these work with an element name (e.g. ``li:first-of-type``) but not with the ``*`` selector). -* Supported: ``*:only-of-type``. +* Supported: ``*:only-of-type``, ``*:has()``. Learn more ----------