Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text-decor/text-decoration-color-recalc.html
<!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>
/css/css-text-decor/reference/text-decoration-color-recalc-ref.html
<!doctype html> <style> div { font-size: 50px; text-decoration: underline solid green; } </style> <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>