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

Unified Diff: chrome/test/data/extensions/api_test/automation/sites/iframe_outer.html

Issue 1761633002: One accessibility tree per frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android Created 4 years, 10 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: chrome/test/data/extensions/api_test/automation/sites/iframe_outer.html
diff --git a/chrome/test/data/extensions/api_test/automation/sites/iframe_outer.html b/chrome/test/data/extensions/api_test/automation/sites/iframe_outer.html
new file mode 100644
index 0000000000000000000000000000000000000000..bcd39f58f3f47889ce3b1b3c373747cf6101a5b3
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/automation/sites/iframe_outer.html
@@ -0,0 +1,11 @@
+<body>
+ <iframe></iframe>
+ <script>
+ var iframe = document.querySelector('iframe');
+ var childUrl = window.location.protocol + '//' +
+ window.location.host;
+ childUrl += '/iframe_inner.html';
+ iframe.src = childUrl;
David Tseng 2016/03/04 16:50:20 Is this necessary? (relative paths so you could ju
dmazzoni 2016/03/07 21:35:32 Ah yes, much simpler.
+
+ </script>
+</body>

Powered by Google App Engine
This is Rietveld 408576698