summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/color_grid.html
blob: ebc989acdb69fbc41ecb79c0612417479fce1aee (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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" content="width=device-width, height=device-height" />
    <title>Color Grid</title>
  </head>
  <style>
    body {
      margin: 0;
    }
    .container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
    }
    .box {
      height: 100vh;
      width: 33.33vw;
    }
    .red {
      background-color: rgb(255, 0, 0);
      color-adjust: exact;
    }
    .green {
      background-color: rgb(0, 255, 0);
      color-adjust: exact;
    }
    .blue {
      background-color: rgb(0, 0, 255);
      color-adjust: exact;
    }
  </style>

  <body>
    <div class="container">
      <div class="red box"></div>
      <div class="green box"></div>
      <div class="blue box"></div>
    </div>
  </body>
</html>