summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-remote-iframe.html
blob: 7e3e5da1ca2336cc4c374df8e4301a4f2522a925 (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
<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="https://example.org/tests/junit/hello.html"
      id="iframe"
    ></iframe>
  </body>
</html>