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

Side by Side Diff: content/test/data/accessibility/html/table-spans.html

Issue 956803003: Update test result after crrev.com/914233002 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
1 <!-- 1 <!--
2 @MAC-ALLOW:AXIndex=* 2 @MAC-ALLOW:AXIndex=*
3 @MAC-ALLOW:AXColumnIndexRange=* 3 @MAC-ALLOW:AXColumnIndexRange=*
4 @MAC-ALLOW:AXRowIndexRange=* 4 @MAC-ALLOW:AXRowIndexRange=*
5 --> 5 -->
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <html> 7 <html>
8 <head> 8 <head>
9 <title>Table example with rowspan and colspan</title> 9 <title>Table example with rowspan and colspan</title>
10 </head> 10 </head>
11 <body> 11 <body>
12 12
13 <table border=1> 13 <table border=1>
14 <tr> 14 <tr>
15 <td rowspan="2">AD</td> 15 <td rowspan="2">AD</td>
16 <td colspan="2">BC</td> 16 <td colspan="2">BC</td>
17 </tr> 17 </tr>
18 <tr> 18 <tr>
19 <td colspan="2">EF</td> 19 <td colspan="2">EF</td>
20 </tr> 20 </tr>
21 </table> 21 </table>
22 <table border=1>
23 <tr>
24 <td rowspan="2">AD</td>
25 <td colspan="2">BC</td>
26 </tr>
27 <tr>
28 <td>EF</td>
29 <td>GH</td>
30 </tr>
31 </table>
22 32
23 </body> 33 </body>
24 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698