1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24

content / test / data / frame_tree / scrollable_page_with_two_frames.html [blame]

<!DOCTYPE html>
<style>
iframe {
  width: 90vw;
  height: 40vh;
}
div {
  position:absolute;
  top: 10000px;
  left: 50px;
  width: 100px;
  height: 100px;
}
</style>
<html>
<body>
<iframe></iframe>
<br>
<iframe></iframe>
<br>
Scrollable page contains two iframes.
<div></div>
</body>
</html>