Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1254)

Unified Diff: content/test/data/accessibility/html/iframe-coordinates-cross-process.html

Issue 1552683002: Enable DumpAccessibilityTree tests to use cross-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebaseline last Android test Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/html/iframe-coordinates-cross-process.html
diff --git a/content/test/data/accessibility/html/iframe-coordinates-cross-process.html b/content/test/data/accessibility/html/iframe-coordinates-cross-process.html
new file mode 100644
index 0000000000000000000000000000000000000000..f165a5c9db0579d9e1be01d0300cf991523e27ca
--- /dev/null
+++ b/content/test/data/accessibility/html/iframe-coordinates-cross-process.html
@@ -0,0 +1,68 @@
+<!--
+@MAC-DENY:AXTitle*
+@MAC-DENY:AXValue*
+@MAC-ALLOW:position*
+@MAC-ALLOW:size*
+
+@WIN-DENY:title*
+@WIN-ALLOW:location*
+@WIN-ALLOW:size=(300, 150)
+@WIN-ALLOW:size=(300, 100)
+@WIN-ALLOW:size=(250, 50)
+@WIN-ALLOW:size=(150, 50)
+@WIN-ALLOW:IA2_STATE_EDITABLE
+
+@BLINK-ALLOW:location*
+@BLINK-ALLOW:scroll*
+@BLINK-ALLOW:size=(300, 150)
+@BLINK-ALLOW:size=(300, 100)
+@BLINK-ALLOW:size=(250, 50)
+@BLINK-ALLOW:size=(150, 50)
+-->
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+body {
+ overflow: hidden;
+}
+iframe {
+ border: 0;
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+}
+div {
+ width: 300px;
+ height: 150px;
+}
+</style>
+</head>
+<body style="margin: 0; padding: 0;">
+
+<div>
+ <button style="margin: 25px; border: 0; width: 250px; height: 50px">
+ Button
+ </button>
+</div>
+
+<div>
+ <button style="margin: 25px; border: 0; width: 250px; height: 50px">
+ Button
+ </button>
+</div>
+
+<div>
+ <iframe id="frame1" style="width: 300px; height: 100px;" scrolling="no"
+ src="/cross-site/1.com/accessibility/html/frame/button.html">
+ </iframe>
+</div>
+
+<div>
+ <iframe id="frame2" style="width: 150px; height: 50px;" scrolling="no"
+ src="/cross-site/2.com/accessibility/html/frame/button_scrolled.html">
+ </iframe>
+</div>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698