Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/printing/transition-in-media-print.tentative.html
<!doctype html> <title>Printing with a transition that could trigger as a result of @media print</title> <link rel="help" href="https://drafts.csswg.org/css-transitions/"> <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/8012"> <link rel="match" href="transition-in-media-print-ref.html"> <style> #target { transition-duration: 100000s; print-color-adjust: exact; } @media not print { #target { color: red; } } </style> <div id="target"> Should not be red </div>
/css/printing/transition-in-media-print-ref.html
<!doctype html> <title>CSS test reference</title> <div> Should not be red </div>