Chromium Code Reviews| 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> |