Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text-decor/text-decoration-propagation-05.html
<!DOCTYPE html> <title>CSS Test: text-decoration propagation - Tables</title> <link rel="author" title="Timothy Loh" href="mailto:timloh@chromium.org" /> <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#line-decoration"> <link rel="match" href="reference/text-decoration-propagation-05-ref.html"> <style> div { text-decoration: underline } </style> <div> <table> <tr> <td>This should be underlined</td> </tr> </table> </div>
/css/css-text-decor/reference/text-decoration-propagation-05-ref.html
<!DOCTYPE html> <title>CSS Test: text-decoration propagation - Tables</title> <div> <table> <tr> <td style="text-decoration: underline">This should be underlined</td> </tr> </table> </div>