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

Unified Diff: LayoutTests/accessibility/table-header-column-row.html

Issue 846013002: Use rowgroup and columgroup properties to expose table headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated expectation result file 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/accessibility/table-header-column-row-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/table-header-column-row.html
diff --git a/LayoutTests/accessibility/table-header-column-row.html b/LayoutTests/accessibility/table-header-column-row.html
index 6f99810a191bde7e5ee64b822649f92896299cea..2e57686aa79878f1bf7a748f9cdd558592171c83 100644
--- a/LayoutTests/accessibility/table-header-column-row.html
+++ b/LayoutTests/accessibility/table-header-column-row.html
@@ -59,6 +59,38 @@
<td>data</td>
</tr>
</table>
+<table width="50%" border="1">
+ <caption>
+ row header and column header (3)
+ <caption>
+ <col>
+ <colgroup span="2"></colgroup>
+ <tr>
+ <td rowspan="2"></td>
+ <th colspan="2" scope="colgroup">col head</th>
+ </tr>
+ <tr>
+ <th scope="col">col head</th>
+ <th scope="col">col head</th>
+ </tr>
+ <tr>
+ <th scope="row">row head</th>
+ <td>data</td>
+ <td>data</td>
+ </tr>
+</table>
+<table width="50%" border="1">
+ <caption>
+ row header and column header (4)
+ <caption>
+ <tr>
+ <th rowspan="2" scope="rowgroup">row head</th>
+ <th scope="col">col head</th>
+ </tr>
+ <tr>
+ <th scope="row">row head</th>
+ </tr>
+</table>
<p>End of test</p>
<p id="description"></p>
<div id="console"></div>
« no previous file with comments | « no previous file | LayoutTests/accessibility/table-header-column-row-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698