We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99207d commit 0fb0c20Copy full SHA for 0fb0c20
1 file changed
tests/phpunit/tests/html-api/wpCssCompoundSelectorList.php
@@ -48,4 +48,13 @@ public function test_parse_empty_selector_list() {
48
$result = WP_CSS_Compound_Selector_List::from_selectors( $input );
49
$this->assertNull( $result );
50
}
51
+
52
+ /**
53
+ * @ticket 62653
54
+ */
55
+ public function test_unsupported_complex_selector() {
56
+ $input = 'ancestor descendant';
57
+ $result = WP_CSS_Compound_Selector_List::from_selectors( $input );
58
+ $this->assertNull( $result );
59
+ }
60
0 commit comments