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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-overlap-expected.html
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-overlap-expected.html b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-overlap-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..5cd3ef1de948fc59a5421160d35cd16701c0aa41
--- /dev/null
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-overlap-expected.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<style>
+ div {
+ color: #aaa;
+ font-size: 50px;
+ position: relative;
+ display: block;
+ width: 200px;
+ height: 100px;
+ }
+
+ div > span { position: absolute; }
+
+ #t1 > span:nth-child(1) { text-decoration: underline double coral; }
+ #t1 > span:nth-child(2) { text-decoration: underline solid skyblue; }
+ #t1 > span:nth-child(3) { text-decoration: underline wavy green; }
+
+ #t2 > span:nth-child(1) { text-decoration: underline; }
+ #t2 > span:nth-child(2) { text-decoration: underline wavy skyblue; }
+ #t2 > span:nth-child(3) { text-decoration: underline dashed green; }
+
+ #t3 > span:nth-child(1) { text-decoration: underline; }
+ #t3 > span:nth-child(2) { text-decoration: underline wavy skyblue; }
+ #t3 > span:nth-child(3) { text-decoration: underline; color: coral; }
+ #t3 > span:nth-child(4) { text-decoration: underline dotted green; }
+
esprehn 2014/03/31 17:41:24 Same. use ids and classes.
+</style>
+<div id="t1"><span>AAAA</span><span>AAAA</span><span>AAAA</span></div>
+<div id="t2"><span>AAAA</span><span>AAAA</span><span>AAAA</span></div>
+<div id="t3"><span>AAAA</span><span>AAAA</span><span>AAAA</span><span>AAAA</span></div>

Powered by Google App Engine
This is Rietveld 408576698