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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-inherit.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 <!-- Adding new text decorations paint over previous ones-->
18 <div style="text-decoration: underline red;">
19 <div style="text-decoration: underline wavy green;">
20 Solid red underline, wavy green underline on top.
21 </div>
22 </div>
23
24 <div style="text-decoration: overline line-through red;">
25 <div style="text-decoration: line-through underline wavy green;">
26 Solid red overline, solid red line-through, wavy green line-through on top, wavy green underline.
27 </div>
28 </div>
29
30 <div style="text-decoration: underline wavy green;">
31 <div style="text-decoration: underline red;">
32 Wavy green underline, solid red underline on top.
33 </div>
34 </div>
35
36 <div style="text-decoration: underline red;">
37 <div style="text-decoration: underline wavy green;">
38 Solid red underline, wavy green underline on top.
39 </div>
40 </div>
41
42 <div style="text-decoration: underline red;">
43 <div>
44 <div style="text-decoration: underline wavy green;">
45 Solid red underline, wavy green underline on top.
46 </div>
47 </div>
48 </div>
49
50 <div style="text-decoration: underline;">
51 <div style="color: red;">
52 Solid black underline with red text.
53 </div>
54 </div>
55
56 <div style="color: red;">
57 <div style="text-decoration: underline;">
58 Solid red underline with red text.
59 </div>
60 </div>
61
62 <div style="text-decoration: underline;">
63 <div style="text-decoration: red wavy underline;">
64 Solid black underline, red wavy underline on top.
65 </div>
66 </div>
67
68 <div style="text-decoration: red wavy underline;">
69 <div style="text-decoration: underline;">
70 Solid red wavy underline, black underline on top.
71 </div>
72 </div>
73
74 <div style="text-decoration: green wavy underline;">
75 <div style="text-decoration: underline;">
76 <div style="text-decoration: red dashed underline;">
77 Wavy green underline, with a solid black underline on top, with a red dash ed underline on top.
78 </div>
79 </div>
80 </div>
81
82 <div style="text-decoration: underline;">
83 <div style="color: red;">
84 <div style="text-decoration: underline dotted;">
85 <div style="color: blue;">
86 <div style="text-decoration: underline wavy green;">
87 <div style="text-decoration: underline dashed;">
88 Solid black underline, with a red dotted underline on top, with a wa vy green underline on top, with a blue dashed underline on top.
89 </div>
90 </div>
91 </div>
92 </div>
93 </div>
94 </div>
95
96 <div style="text-decoration: underline;">
97 <div style="text-decoration: underline wavy blue;">
98 Solid black underline, wavy blue underline on top.
99 </div>
100 </div>
101
102 <div style="text-decoration: underline; color: green;">
103 <div style="text-decoration: underline wavy blue;">
104 Solid green underline, wavy blue underline on top, green text.
105 </div>
106 </div>
107
108 <div style="text-decoration: underline; color: green;">
109 <div style="text-decoration: underline wavy;">
110 Solid green underline, wavy green underline on top, green text.
111 </div>
112 </div>
113
114 <div style="color: green;">
115 <div style="text-decoration: underline overline wavy;">
116 Wavy green underline and overline, green text.
117 </div>
118 </div>
119
120 <div style="text-decoration: underline overline wavy;">
121 <div style="color: green;">
122 Wavy black underline and overline, green text.
123 </div>
124 </div>
125
126 <div style="text-decoration: underline overline wavy;">
127 <div style="color: green; text-decoration: underline;">
128 Wavy black underline and overline, solid green underline on top, green text .
129 </div>
130 </div>
131
132 <div style="text-decoration: underline overline wavy;">
133 <div style="color: green; text-decoration: underline blue;">
134 Wavy black underline and overline, solid blue underline on top, green text.
135 </div>
136 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698