summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/red-background-body-fully-covered-by-green-element.html
blob: ad6c96599e033098731e4461ac8f2e3ebda30e64 (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 http-equiv="content-type" content="text/html; charset=windows-1252" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style>
      html {
        scrollbar-width: none;
      }
      body {
        background: red;
        margin: 0;
      }
      .tall {
        height: 600vh;
        background: green;
      }
    </style>
  </head>
  <body>
    <div class="tall"></div>
  </body>
</html>