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> |