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

Side by Side Diff: content/test/data/accessibility/html/table-simple.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-ALLOW:AXIndex=* 2 @MAC-ALLOW:AXIndex=*
4 @MAC-ALLOW:AXColumnIndexRange=* 3 @MAC-ALLOW:AXColumnIndexRange=*
5 @MAC-ALLOW:AXRowIndexRange=* 4 @MAC-ALLOW:AXRowIndexRange=*
6 --> 5 -->
6 <!DOCTYPE html>
7 <html> 7 <html>
8 <head> 8 <head>
9 <title>Table example</title> 9 <title>Table example</title>
10 </head> 10 </head>
11 <body> 11 <body>
12 12
13 <table border=1> 13 <table border=1>
14 <tr> 14 <tr>
15 <th>Pair</th> 15 <th>Pair</th>
16 <th>Single</th> 16 <th>Single</th>
17 </tr> 17 </tr>
18 <tr> 18 <tr>
19 <td>AB</td> 19 <td>AB</td>
20 <td>B</td> 20 <td>B</td>
21 </tr> 21 </tr>
22 <tr> 22 <tr>
23 <td>CD</td> 23 <td>CD</td>
24 <td>D</td> 24 <td>D</td>
25 </tr> 25 </tr>
26 </table> 26 </table>
27 27
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698