Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/background-clip/clip-text-on-body-not-propagated-to-root.html
<!DOCTYPE html> <title>background-clip:text on the root</title> <link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text"> <link rel="stylesheet" href="/fonts/ahem.css"> <link rel="match" href="clip-text-on-body-not-propagated-to-root-ref.html"> <style> html { background-color: white; font-size: 24px; color: transparent; font-family: Ahem; } body { background-color: green; background-clip: text; } </style> This text should be green<br> on a white background.
/css/css-backgrounds/background-clip/clip-text-on-body-not-propagated-to-root-ref.html
<!DOCTYPE html> <link rel="stylesheet" href="/fonts/ahem.css"> <style> html { font-size: 24px; background-color: white; color: green; font-family: Ahem; } </style> This text should be green<br> on a white background.