https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ed7b33566fde544671dbf1dda97757bbbc5d7d6c authored by Nicolas Pena on 12 April 2018, 19:56:32 UTC
Remove http/tests/w3c
Tip revision: ed7b335
text-decoration-style-multiple.html
<!doctype html>
<link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-decoration-style">
<link rel="match" href="reference/text-decoration-style-multiple-ref.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>
back to top