OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 @BLINK-ALLOW:pageLocation* |
| 3 @BLINK-ALLOW:pageSize=(200, 200) |
| 4 @BLINK-ALLOW:pageSize=(400, 400) |
| 5 @BLINK-ALLOW:transform |
| 6 |
| 7 TODO(dmazzoni): this shouldn't require a timeout to succeed |
| 8 --> |
| 9 <!DOCTYPE html> |
| 10 <html> |
| 11 <body style="padding: 0; margin: 0;"> |
| 12 <iframe width=250 height=250 src="/cross-site/1.com/accessibility/html/frame/b
ox.html" style="border: 0; position: absolute; top: 0px; left: 0px;"></iframe> |
| 13 <iframe width=250 height=250 src="/cross-site/2.com/accessibility/html/frame/b
ox.html" style="border: 0; position: absolute; top: 300px; left: 0px; transform:
scale(2.0); transform-origin: left top;"></iframe> |
| 14 <script> |
| 15 setTimeout(function() { |
| 16 document.body.appendChild(document.createTextNode('Done')); |
| 17 }, 1000); |
| 18 </script> |
| 19 </body> |
| 20 </html> |
OLD | NEW |