Index: content/test/data/accessibility/html/iframe-transform-cross-process.html |
diff --git a/content/test/data/accessibility/html/iframe-transform-cross-process.html b/content/test/data/accessibility/html/iframe-transform-cross-process.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c8c29dd50a1be76edd18b8892c9e1573777a2f0e |
--- /dev/null |
+++ b/content/test/data/accessibility/html/iframe-transform-cross-process.html |
@@ -0,0 +1,20 @@ |
+<!-- |
+@BLINK-ALLOW:pageLocation* |
+@BLINK-ALLOW:pageSize=(200, 200) |
+@BLINK-ALLOW:pageSize=(400, 400) |
+@BLINK-ALLOW:transform |
+ |
+TODO(dmazzoni): this shouldn't require a timeout to succeed |
+--> |
+<!DOCTYPE html> |
+<html> |
+<body style="padding: 0; margin: 0;"> |
+ <iframe width=250 height=250 src="/cross-site/1.com/accessibility/html/frame/box.html" style="border: 0; position: absolute; top: 0px; left: 0px;"></iframe> |
+ <iframe width=250 height=250 src="/cross-site/2.com/accessibility/html/frame/box.html" style="border: 0; position: absolute; top: 300px; left: 0px; transform: scale(2.0); transform-origin: left top;"></iframe> |
+<script> |
+setTimeout(function() { |
+ document.body.appendChild(document.createTextNode('Done')); |
+}, 1000); |
+</script> |
+</body> |
+</html> |