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

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

<!DOCTYPE html>
<style>
div {
  transform: scale(0.5);
}
iframe {
  width: 100px;
  height: 100px;
}
</style>
<html>
<body>
<div>
<iframe src="page_with_positioned_frame.html"></iframe>
</div>
</body>
</html>