1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19

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

<!DOCTYPE html>
<html>
  <head>
    <style>
      iframe {
        position: absolute;
        top: 50px;
        left: 50px;
        width: 200px;
        height: 200px;
        transform: scale(0.5);
      }
    </style>
  </head>
  <body>
    <iframe src="/cross-site/baz.com/title1.html"></iframe>
    This page contains a positioned and scaled cross-origin iframe.
  </body>
</html>