fix(curriculum): add missing selector variations for tests 48 and 49 (#63982)

This commit is contained in:
Viraj Jadhav
2025-11-20 13:34:58 +05:30
committed by GitHub
parent a556ec7c1d
commit 6e17ea7e60

View File

@@ -424,6 +424,8 @@ const selectors = [
'span[class~="two"] > :first-child, span[class~="two"] > :nth-child(2)',
'span[class~="two"] > :nth-child(2), span[class~="two"] > :first-child',
'span[class~="two"] > :nth-of-type(-n+2)',
'span[class~="two"] > :first-child, span[class~="two"] > :nth-of-type(2)',
'span[class~="two"] > :nth-of-type(2), span[class~="two"] > :first-child',
'span[class~="two"] > :nth-child(-n+2)',
'span[class~="two"] > span:nth-child(1), span[class~="two"] > span:nth-child(2)',
'span[class~="two"] > span:nth-child(2), span[class~="two"] > span:nth-child(1)',
@@ -455,6 +457,8 @@ const selectors = [
'span[class~="two"] > :nth-child(2), span[class~="two"] > :nth-child(1)',
'span[class~="two"] > :first-child, span[class~="two"] > :nth-child(2)',
'span[class~="two"] > :nth-child(2), span[class~="two"] > :first-child',
'span[class~="two"] > :first-child, span[class~="two"] > :nth-of-type(2)',
'span[class~="two"] > :nth-of-type(2), span[class~="two"] > :first-child',
'span[class~="two"] > :nth-of-type(-n+2)',
'span[class~="two"] > :nth-child(-n+2)',
'span[class~="two"] > span:nth-child(1), span[class~="two"] > span:nth-child(2)',