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

Side by Side Diff: content/test/data/accessibility/iframe-coordinates.html

Issue 13479003: Modify AccessibilityTreeFormatter to build up an internal representation of the tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 8 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
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 @MAC-DENY:title* 3 @MAC-DENY:AXTitle*
4 @MAC-DENY:value* 4 @MAC-DENY:AXValue*
5 @MAC-ALLOW:position* 5 @MAC-ALLOW:position*
6 @MAC-ALLOW:size* 6 @MAC-ALLOW:size*
7 7
8 @WIN-DENY:title* 8 @WIN-DENY:title*
9 @WIN-ALLOW:location* 9 @WIN-ALLOW:location*
10 @WIN-ALLOW:size* 10 @WIN-ALLOW:size*
11 --> 11 -->
12 <html> 12 <html>
13 <head> 13 <head>
14 <style> 14 <style>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 var frame1 = document.getElementById('frame1'); 61 var frame1 = document.getElementById('frame1');
62 writeFrameCode(frame1); 62 writeFrameCode(frame1);
63 63
64 var frame2 = document.getElementById('frame2'); 64 var frame2 = document.getElementById('frame2');
65 writeFrameCode(frame2); 65 writeFrameCode(frame2);
66 frame2.contentWindow.scrollTo(150, 50); 66 frame2.contentWindow.scrollTo(150, 50);
67 </script> 67 </script>
68 68
69 </body> 69 </body>
70 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698