summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/printing/transition-in-media-print.tentative.html
blob: 54bac1f48124a27689dc2f614003d462fe2dd477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>