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

Side by Side Diff: content/test/data/accessibility/table-thead-tbody-tfoot.html

Issue 683063002: Add DumpAccessibilityTree tests (9 of 20) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 - thead, tbody, tfoot</title>
10 </head> 10 </head>
11 <body> 11 <body>
12 12
13 <table border=1> 13 <table border=1>
14 <thead> 14 <thead>
15 <tr> 15 <tr>
16 <th>Sum</th> 16 <th>Sum</th>
17 <th>Subtraction</th> 17 <th>Subtraction</th>
18 </tr> 18 </tr>
19 </thead> 19 </thead>
20 <tfoot> 20 <tfoot>
21 <tr> 21 <tr>
22 <td>12</td> 22 <td>12</td>
23 <td>3</td> 23 <td>3</td>
24 </tr> 24 </tr>
25 </tfoot> 25 </tfoot>
26 <tbody>
26 <tr> 27 <tr>
27 <td>10</td> 28 <td>10</td>
28 <td>7</td> 29 <td>7</td>
29 </tr> 30 </tr>
30 <tr> 31 <tr>
31 <td>2</td> 32 <td>2</td>
32 <td>4</td> 33 <td>4</td>
33 </tr> 34 </tr>
34 35 </tbody>
35 </table> 36 </table>
36 37
37 </body> 38 </body>
38 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698