Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/selectors/visited-descendant.html

Issue 2463043003: Fix minor typo in visited-descendant.html. (Closed)
Patch Set: Rebaseline fast/selectors/visited-descendant.html Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/fast/selectors/visited-descendant-expected.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/fast/selectors/visited-descendant-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698