Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text-decor/text-underline-position-vertical.html
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-underline-position-property"> <link rel="match" href="reference/text-underline-position-vertical-ref.html"> <style> body { writing-mode: vertical-rl; } .underline { text-decoration: underline; } .overline { text-decoration: overline; } </style> </head> <body lang="en"> <div class="overline" style="text-underline-position: right">サンプル</div> <div class="underline" style="text-underline-position: left">サンプル</div> </body> </html>
/css/css-text-decor/reference/text-underline-position-vertical-ref.html
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <style> body { writing-mode: vertical-rl; } .underline { text-decoration: underline; } .overline { text-decoration: overline; } </style> </head> <body lang="en"> <div class="underline">サンプル</div> <div class="underline">サンプル</div> </body> </html>