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

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

Issue 195093002: Support multiple text decoration styles. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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: inline-block;
8 width: 200px;
9 height: 200px;
10 }
11
12 div > span { position: absolute; }
13
14 div > span:nth-child(3) { text-decoration: underline solid coral; }
15 div > span:nth-child(3) > span { text-decoration: overline dashed skyblue; }
16 div > span:nth-child(3) > span > span { text-decoration: line-through wavy green; }
17
18 </style>
19 <div><span>AAAA</span><span>AAAA</span><span><span><span>AAAA</span></span></spa n></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698