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

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

<!DOCTYPE html>
<head>
<style>
iframe[name="frame1"] {
  position:absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
}
iframe[name="frame2"] {
  position:absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
}
</style>
</head>
<body>
  This page has two iframes: both are cross-site.
  <iframe name="frame1" src="/cross-site/bar.com/title1.html"></iframe>
  <iframe name="frame2" src="/cross-site/baz.com/title1.html"></iframe>
</body>
</html>