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
   28
   29
   30
   31
   32
   33
   34
   35

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


<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
    iframe {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100px;
      height: 100px;
      border: none;
      z-index: 0;
    }
    .on-top-of-iframe {
      position: absolute;
      width: 100px;
      height: 100px;
      border: none;
      z-index: 100;
    }
    </style>
  </head>
  <body>
    <iframe src="/cross-site/baz.com/title1.html"></iframe>
    <div class="on-top-of-iframe" style="left: 0px; top: 0px; pointer-events: none; background: blue;">Should not hit test.</div>

    <iframe src="/cross-site/bar.com/title1.html" style="left: 110px;"></iframe>
    <div class="on-top-of-iframe" style="left: 110px; top: 0px;">
      <div style="height: 3px; width: 1000px; background: blue;"></div>
      <div style="height: 1000px; width: 3px; background: blue;"></div>
    </div>
  </body>
</html>