<!--
@WIN-ALLOW:location*
@WIN-ALLOW:size=(100, 50)
@WIN-ALLOW:size=(150, 75)
@BLINK-ALLOW:pageLocation*
@BLINK-ALLOW:pageSize=(100, 50)
@BLINK-ALLOW:pageSize=(150, 75)
@BLINK-ALLOW:transform
There are two iframes that each include box.html, one with no transform,
and one with a transform of 1.5 applied.
The image in box.html is at (10, 10) size (100 x 50)
Inside the first iframe it should be at (10, 10) size (100 x 50)
Inside the second iframe it should be at (15, 265) size (150 x 75)
-->
<!DOCTYPE html>
<html>
<body style="padding: 0; margin: 0;">
<iframe width=220 height=220 src="frame/box.html" style="border: 0; position: absolute; top: 0px; left: 0px;"></iframe>
<iframe width=220 height=220 src="frame/box2.html" style="border: 0; position: absolute; top: 250px; left: 0px; transform: scale(1.5); transform-origin: left top;"></iframe>
</body>
</html>