Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<title>Printing with a transition that could trigger as a result of @media print</title>
<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>