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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-overlap-expected.html

Issue 219633002: Proper support for multiple text decorations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix jchaffraix' issues. Created 6 years, 7 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
OLDNEW
(Empty)
1 <!doctype html>
2 <style>
3 div {
4 color: #aaa;
5 font-size: 50px;
6 position: relative;
7 display: block;
8 width: 200px;
9 height: 100px;
10 }
11
12 div > span { position: absolute; }
13
14 #t1 .d1 { text-decoration: underline double coral; }
15 #t1 .d2 { text-decoration: underline solid skyblue; }
16 #t1 .d3 { text-decoration: underline wavy green; }
17
18 #t2 .d1 { text-decoration: underline; }
19 #t2 .d2 { text-decoration: underline wavy skyblue; }
20 #t2 .d3 { text-decoration: underline dashed green; }
21
22 #t3 .d1 { text-decoration: underline; }
23 #t3 .d2 { text-decoration: underline wavy skyblue; }
24 #t3 .d3 { text-decoration: underline; color: coral; }
25 #t3 .d4 { text-decoration: underline dotted green; }
26
27 </style>
28 <div id="t1"><span class="d1">AAAA</span><span class="d2">AAAA</span><span class ="d3">AAAA</span></div>
29 <div id="t2"><span class="d1">AAAA</span><span class="d2">AAAA</span><span class ="d3">AAAA</span></div>
30 <div id="t3"><span class="d1">AAAA</span><span class="d2">AAAA</span><span class ="d3">AAAA</span><span class="d4">AAAA</span></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698