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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.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 <!-- Special optimization for 'simple' underlines -->
18 <div style="text-decoration: underline;">
19 Solid black underline.
20 </div>
21
22 <div style="text-decoration: underline overline;">
23 <div style="text-decoration: underline wavy green;">
24 Solid black overline, solid black underline with wavy green underline on to p.
25 </div>
26 </div>
27
28 <div style="text-decoration: underline wavy green;">
29 <div>
30 <div style="text-decoration: underline;">
31 Wavy green underline, solid black underline on top.
32 </div>
33 </div>
34 </div>
35
36 <div style="text-decoration: underline;">
37 <div>
38 <div style="text-decoration: underline wavy green;">
39 Solid black underline, wavy green underline on top.
40 </div>
41 </div>
42 </div>
43
44 <div style="text-decoration: underline wavy red;">
45 <div style="text-decoration: underline;">
46 Wavy red underline, solid black underline on top.
47 </div>
48 </div>
49
50 <div style="text-decoration: underline wavy red; color: blue;">
51 <div style="text-decoration: underline;">
52 Wavy red underline, solid blue underline on top, blue text.
53 </div>
54 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698