summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-local-iframe.html
blob: 0aff253395024780070a53f3adfaddf2d31d8406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <style>
      body {
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
      }
      iframe {
        height: 100%;
      }
    </style>
  </head>
  <body>
    Some stuff
    <iframe src="../hello.html" id="iframe"></iframe>
  </body>
</html>