summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/viewport.html
blob: a5dfa0f64f13930bdace6f1784376da597f07d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
  <head>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1.0, viewport-fit=cover"
    />
    <style type="text/css">
      #wide {
        background-color: rgb(200, 0, 0);
        width: 100%;
        height: 40px;
      }
    </style>
  </head>
  <body>
    <div id="wide"></div>
  </body>
</html>