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 / page_with_two_positioned_frames.html [blame]

<!DOCTYPE html>
<style>
.iframe1 {
  position:absolute;
  top: 50px;
  left: 50px;
  width: 200px;
  height: 200px;
}
.iframe2 {
  position:absolute;
  top: 50px;
  left: 300px;
  width: 200px;
  height: 200px;
}
</style>
<html>
<body>
<iframe class="iframe1"></iframe>
<iframe class="iframe2"></iframe>
This page contains two positioned cross-origin frames.
</body>
</html>