Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text-decor/text-decoration-color-recalc-002.html
<!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>
/css/css-text-decor/text-decoration-color-recalc-002-ref.html
<!DOCTYPE html> <html> <body> <p style="color: green;"><s>Text passes if strikethrough color is green.</s></p> </body> </html>