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

Side by Side 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, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 <body>
2 <iframe></iframe>
3 <script>
4 var iframe = document.querySelector('iframe');
5 var childUrl = window.location.protocol + '//' +
6 window.location.host;
7 childUrl += '/iframe_inner.html';
8 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.
9
10 </script>
11 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698