summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-decoration-color-recalc-002.html
blob: ce5c36dd5b6508c6d34ac0de5a5e65aa1c54fcf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
    <head>
        <title>CSS Test: CSS3 text-decoration-color currentColor is updated</title>
        <link rel="help" href="https://crbug.com/1330953">
        <link rel="match" href="text-decoration-color-recalc-002-ref.html">
    </head>
    <body>
        <p id="p" style="color: red;"><s>Text passes if strikethrough color is green.</s></p>
    </body>
    <script>
        p.offsetTop;
        p.style.color = 'green';
    </script>
</html>