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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple.html
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple.html b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple.html
new file mode 100644
index 0000000000000000000000000000000000000000..0ee91134665563ef70f92e65ea1383f6112a1873
--- /dev/null
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple.html
@@ -0,0 +1,19 @@
+<!doctype html>
+<style>
+ div {
+ color: #aaa;
+ font-size: 50px;
+ position: relative;
+ display: inline-block;
+ width: 200px;
+ height: 200px;
+ }
+
+ div > span { position: absolute; }
+
+ div > span:nth-child(3) { text-decoration: underline solid coral; }
+ div > span:nth-child(3) > span { text-decoration: overline dashed skyblue; }
+ div > span:nth-child(3) > span > span { text-decoration: line-through wavy green; }
+
+</style>
+<div><span>AAAA</span><span>AAAA</span><span><span><span>AAAA</span></span></span></div>

Powered by Google App Engine
This is Rietveld 408576698