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

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

<!DOCTYPE html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
iframe {
  position:absolute;
  top: 0px;
  left: 0px;
  width: 200px;
  height: 200px;
}

div {
  border-radius: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  height: 100px;
  background: blue;
}
</style>
<html>
<body>
<iframe src="/cross-site/bar.com/frame_tree/page_with_positioned_frame.html"></iframe>
<div></div>
</body>
</html>