| <!-- |
| @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. Both iframes are cross-process. |
| |
| 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="/cross-site/1.com/accessibility/html/frame/box.html" style="border: 0; position: absolute; top: 0px; left: 0px;"></iframe> |
| <iframe width=220 height=220 src="/cross-site/2.com/accessibility/html/frame/box.html" style="border: 0; position: absolute; top: 250px; left: 0px; transform: scale(1.5); transform-origin: left top;"></iframe> |
| </body> |
| </html> |