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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-inherit-links.html

Issue 1328283005: Add support for multiple text decorations with same line positioning (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review feedback Created 5 years, 3 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsTextWithPixelResults();
5 </script>
6
7 <style>
8 /* Make decorations bigger so they are easier to see */
9 body {
10 font-size: 15px;
11 }
12 body > div {
13 margin-bottom: 15px;
14 }
15 </style>
16
17 <div>
18 <a href="http://wflwjflwef.com">Unvisited link: Solid blue underline, blue tex t.</a>
19 </div>
20
21 <div>
22 <a href="">Visited link: Solid purple underline, purple text.</a>
23 </div>
24
25 <div style="text-decoration: underline wavy green;">
26 <a href="">Custom visited link: Green wavy underline, purple solid underline o n top, purple text. </a>
27 </div>
28
29 <div>
30 <a href="" style="text-decoration: overline wavy;">Custom visited link: Purple solid underline, purple wavy overline, purple text.</a>
31 </div>
32
33 <div>
34 <a href="" style="text-decoration: underline wavy;">Custom visited link: Purpl e wavy underline, purple text.</a>
35 </div>
36
37 <div style="text-decoration: underline wavy;">
38 <a href="" style="color: green;">Custom visited link: Green wavy underline, gr een solid underline on top, green text.</a>
39 </div>
40
41 <div style="color: green;">
42 <a href="" style="text-decoration: underline wavy;">Custom visited link: Purpl e wavy underline, purple text.</a>
43 </div>
44
45 <div style="text-decoration: overline wavy;" >
46 <a href="">Custom visited link: Purple solid underline, purple wavy overline, purple text.</a>
47 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698