| /* The following 3 rules should all have the same specificity when matching <target>. They should be be applied in order. */ |
| foo:nth-child(n), bar:nth-child(n), target:nth-child(n) { |
| :nth-child(3n of foo, bar, target) { |
| foo.target, bar.target, target.target { |
| <p>This test the specificity of :nth-child() with static specificity. The test passes if the text "target" is displayed white on green background. There should be 2 red rects on each side.</p> |
| <more-padding></more-padding> |
| <target class="target">Target</target> |
| <more-padding></more-padding> |