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

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

Issue 850683003: Add DumpAccessibilityTree tests (19 of 20) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 <!doctype html>
2 <!-- 1 <!--
3 @MAC-DENY:AXTitle* 2 @MAC-DENY:AXTitle*
4 @MAC-DENY:AXValue* 3 @MAC-DENY:AXValue*
5 @MAC-ALLOW:position* 4 @MAC-ALLOW:position*
6 @MAC-ALLOW:size* 5 @MAC-ALLOW:size*
7 6
8 @WIN-DENY:title* 7 @WIN-DENY:title*
9 @WIN-ALLOW:location* 8 @WIN-ALLOW:location*
10 @WIN-ALLOW:size=(300, 150) 9 @WIN-ALLOW:size=(300, 150)
11 @WIN-ALLOW:size=(300, 100) 10 @WIN-ALLOW:size=(300, 100)
12 @WIN-ALLOW:size=(250, 50) 11 @WIN-ALLOW:size=(250, 50)
13 @WIN-ALLOW:size=(150, 50) 12 @WIN-ALLOW:size=(150, 50)
14 @WIN-ALLOW:IA2_STATE_EDITABLE 13 @WIN-ALLOW:IA2_STATE_EDITABLE
15 --> 14 -->
15 <!DOCTYPE html>
16 <html> 16 <html>
17 <head> 17 <head>
18 <style> 18 <style>
19 body { 19 body {
20 overflow: hidden; 20 overflow: hidden;
21 } 21 }
22 iframe { 22 iframe {
23 border: 0; 23 border: 0;
24 margin: 0; 24 margin: 0;
25 padding: 0; 25 padding: 0;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 var frame1 = document.getElementById('frame1'); 69 var frame1 = document.getElementById('frame1');
70 writeFrameCode(frame1); 70 writeFrameCode(frame1);
71 71
72 var frame2 = document.getElementById('frame2'); 72 var frame2 = document.getElementById('frame2');
73 writeFrameCode(frame2); 73 writeFrameCode(frame2);
74 frame2.contentWindow.scrollTo(150, 50); 74 frame2.contentWindow.scrollTo(150, 50);
75 </script> 75 </script>
76 76
77 </body> 77 </body>
78 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698