summaryrefslogtreecommitdiffstats
path: root/browser/extensions/screenshots/test/browser/green2vh.html
blob: bb25e2a0216572ac45cd9f51ab57b5419c5312ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    html, body {
      padding: 0;
      margin: 0;
    }
    body {
      background: rgb(0,255,0);
      min-height: 200vh;
    }
  </style>
  <script>
    window.addEventListener("DOMContentLoaded", () => {
      console.log(window.screen);
    });
  </script>
</head>
<body>
</body>
</html>