| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 :visited { color: red } | 4 :visited { color: red } |
| 5 :visited #l1 { color: green } | 5 :visited #l1 { color: green } |
| 6 :visited > #l2 { color: green } | 6 :visited > #l2 { color: green } |
| 7 :visited span :visited { color: green } | 7 :visited span :visited { color: green } |
| 8 :link + #span1 { color: green } | 8 :link + #span1 { color: green } |
| 9 :visited + #span1 { color: red } | 9 :visited + #span1 { color: red } |
| 10 :link ~ #span2 { color: green } | 10 :link ~ #span2 { color: green } |
| 11 :visited ~ #span2 { color: red } | 11 :visited ~ #span2 { color: red } |
| 12 </style> | 12 </style> |
| 13 </head> | 13 </head> |
| 14 <body> | 14 <body> |
| 15 <p> | 15 <p> |
| 16 Test that visited style matches to the topmost link in a decendant selector. | 16 Test that visited style matches to the topmost link in a descendant selector. |
| 17 The link should be green, with red underlining. | 17 The link should be green, with red underlining. |
| 18 </p> | 18 </p> |
| 19 <p> | 19 <p> |
| 20 <a href=""><span id="l1">Link</span></a> | 20 <a href=""><span id="l1">Link</span></a> |
| 21 </p> | 21 </p> |
| 22 <p> | 22 <p> |
| 23 Test that visited style matches to the topmost link in a child selector. | 23 Test that visited style matches to the topmost link in a child selector. |
| 24 The link should be green, with red underlining. | 24 The link should be green, with red underlining. |
| 25 </p> | 25 </p> |
| 26 <p> | 26 <p> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 46 Test that indirect adjacent selector doesn't match visited style. | 46 Test that indirect adjacent selector doesn't match visited style. |
| 47 The link should be red, with red underlining. | 47 The link should be red, with red underlining. |
| 48 The span should be green. | 48 The span should be green. |
| 49 </p> | 49 </p> |
| 50 <p> | 50 <p> |
| 51 <a href="">Link</a> | 51 <a href="">Link</a> |
| 52 <span id=span2>Span</span> | 52 <span id=span2>Span</span> |
| 53 </p> | 53 </p> |
| 54 </body> | 54 </body> |
| 55 </html> | 55 </html> |
| OLD | NEW |