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

Unified Diff: content/test/data/accessibility/table-th-rowheader.html

Issue 651223004: Add DumpAccessibilityTree tests (3 of 20) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Skipping aria-haspopup AX test on windows Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/table-th-rowheader.html
diff --git a/content/test/data/accessibility/table-simple.html b/content/test/data/accessibility/table-th-rowheader.html
similarity index 67%
copy from content/test/data/accessibility/table-simple.html
copy to content/test/data/accessibility/table-th-rowheader.html
index 72e2b4df98d3c12d425f1572e419634744bc986e..1c3eb3825c077c4f3c567fbe9e0b3c0af013b88e 100644
--- a/content/test/data/accessibility/table-simple.html
+++ b/content/test/data/accessibility/table-th-rowheader.html
@@ -12,16 +12,12 @@
<table border=1>
<tr>
- <th>Pair</th>
- <th>Single</th>
+ <th>Firstname</th>
+ <td>Jill</td>
</tr>
<tr>
- <td>AB</td>
- <td>B</td>
- </tr>
- <tr>
- <td>CD</td>
- <td>D</td>
+ <th>Lastname</th>
+ <td>Smith</td>
</tr>
</table>

Powered by Google App Engine
This is Rietveld 408576698