summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-decoration-color-recalc.html
blob: c82bdcad73852b10842b7da568ca77b80ebe65a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-decoration-color-property">
<link rel="match" href="reference/text-decoration-color-recalc-ref.html">
<style>
    div {
        font-size: 50px;
        text-decoration: underline solid red;
    }
</style>
<script>
    onload = function() {
        target.style.textDecorationColor = "green";
    };
</script>
<p>Test that changes in text-decoration-color are recalculated correctly. PASS
if the text below has a solid green underline, and no red.</p>
<div id="target">
    Filler text
</div>