| Index: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-expected.html
|
| diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-expected.html b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f80396930e1bbaf06df7b999cf657cf74af99bc0
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-multiple-expected.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(1) { text-decoration: underline solid coral; }
|
| + div > span:nth-child(2) { text-decoration: overline dashed skyblue; }
|
| + div > span:nth-child(3) { text-decoration: line-through wavy green; }
|
| +
|
| +</style>
|
| +<div><span>AAAA</span><span>AAAA</span><span>AAAA</span></div>
|
|
|