blob: d53be79b0ab21acb4e1a7535a3dc2b63be412746 [file] [log] [blame]
SUCCESS
Rules from the stylesheet:
#a:nth-child(n-1) { color: green; }
#b:nth-child(n-10) { color: green; }
#g:nth-child(-n-1) { color: green; }
#h:nth-child(-n-10) { color: green; }
#n:nth-child(-n-1) { color: green; }
#o:nth-child(-n+13) { color: green; }
Expected result:
#a:nth-child(n-1) { color: green; }
#b:nth-child(n-10) { color: green; }
#g:nth-child(-n-1) { color: green; }
#h:nth-child(-n-10) { color: green; }
#n:nth-child(-n-1) { color: green; }
#o:nth-child(-n+13) { color: green; }