summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/color_orange_background.html
blob: 8a682d79a7d8b8dc85b2054a7e88cd3be325fbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" content="width=device-width, height=device-height" />
    <title>Orange Print Background</title>
  </head>
  <style>
    .box {
      height: 100vh;
      width: 100vw;
    }
    @media screen {
      .background {
        background-color: rgb(0, 0, 255);
        color-adjust: exact;
      }
    }
    @media print {
      .background {
        background-color: rgb(255, 113, 57);
        color-adjust: exact;
      }
    }
  </style>

  <body>
    <div class="box background"></div>
  </body>
</html>