transition-in-media-print.tentative.html (494B)
1 <!doctype html> 2 <title>Printing with a transition that could trigger as a result of @media print</title> 3 <link rel="help" href="https://drafts.csswg.org/css-transitions/"> 4 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/8012"> 5 <link rel="match" href="transition-in-media-print-ref.html"> 6 <style> 7 #target { 8 transition-duration: 100000s; 9 print-color-adjust: exact; 10 } 11 @media not print { 12 #target { 13 color: red; 14 } 15 } 16 </style> 17 <div id="target"> 18 Should not be red 19 </div>