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

Side by Side Diff: chrome/test/data/extensions/api_test/automation/sites/attributes.html

Issue 2799443002: Implemented ARIA colindex, rowindex, colcount and rowcount for Chromevox. (Closed)
Patch Set: Fixed Blink test.# with '#' will be ignored, and an empty message aborts the commit. Created 3 years, 8 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 * Copyright 2014 The Chromium Authors. All rights reserved. Use of this 2 * Copyright 2014 The Chromium Authors. All rights reserved. Use of this
3 * source code is governed by a BSD-style license that can be found in the 3 * source code is governed by a BSD-style license that can be found in the
4 * LICENSE file. 4 * LICENSE file.
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <title>Automation Tests - Attributes</title> 8 <title>Automation Tests - Attributes</title>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 aria-valuenow="14" id="spinbutton-role"></div> 46 aria-valuenow="14" id="spinbutton-role"></div>
47 <div tabindex="0" role="progressbar" aria-valuemin="0" aria-valuenow="0.9" 47 <div tabindex="0" role="progressbar" aria-valuemin="0" aria-valuenow="0.9"
48 aria-valuemax="1.0" aria-label="progressbar-role"></div> 48 aria-valuemax="1.0" aria-label="progressbar-role"></div>
49 <div tabindex="0" role="scrollbar" aria-valuemin="0" aria-valuenow="0" 49 <div tabindex="0" role="scrollbar" aria-valuemin="0" aria-valuenow="0"
50 aria-valuemax="1.0" aria-orientation="vertical" aria-controls="main" 50 aria-valuemax="1.0" aria-orientation="vertical" aria-controls="main"
51 id="scrollbar-role"></div> 51 id="scrollbar-role"></div>
52 52
53 <div id="main" aria-label="main">Content for scrollbar to control</div> 53 <div id="main" aria-label="main">Content for scrollbar to control</div>
54 54
55 <!-- table and cell attributes --> 55 <!-- table and cell attributes -->
56 <table id="table" role="grid"> 56 <!-- The first 100 rows and the first 50 columns are missing. -->
57 <table id="table" role="grid" aria-rowcount="103" aria-colcount="53">
57 <tr role="row"> 58 <tr role="row">
58 <td role="cell">Cell spanning one column</td> 59 <td role="cell" aria-rowindex="101" aria-colindex="51">Cell spanning one c olumn</td>
59 <td role="cell">Cell spanning one column</td> 60 <td role="cell" aria-rowindex="101" aria-colindex="52">Cell spanning one c olumn</td>
60 <td role="cell">Cell spanning one column</td> 61 <td role="cell" aria-rowindex="101" aria-colindex="53">Cell spanning one c olumn</td>
61 <tr role="row"> 62 <tr role="row">
62 <td colspan="2" role="cell">Cell spanning two columns</td> 63 <td colspan="2" role="cell" aria-rowindex="102" aria-colindex="51">Cell sp anning two columns</td>
63 <td rowspan="2" role="cell">Cell spanning two rows</td> 64 <td rowspan="2" role="cell" aria-rowindex="102" aria-colindex="53">Cell sp anning two rows</td>
64 </tr> 65 </tr>
65 <tr role="row"> 66 <tr role="row">
66 <td role="cell">Cell spanning one column</td> 67 <td role="cell" aria-rowindex="103" aria-colindex="51">Cell spanning one c olumn</td>
67 <td role="cell">Cell spanning one column</td> 68 <td role="cell" aria-rowindex="103" aria-colindex="52">Cell spanning one c olumn</td>
68 </tr> 69 </tr>
69 </table> 70 </table>
70 71
71 <p id="Spanish" lang="es-ES">Hola</p> 72 <p id="Spanish" lang="es-ES">Hola</p>
72 73
73 <!-- checked attribute --> 74 <!-- checked attribute -->
74 <div id="check-test-1" aria-label="check-test-1" role="checkbox" aria-checked= "true">Checked</div> 75 <div id="check-test-1" aria-label="check-test-1" role="checkbox" aria-checked= "true">Checked</div>
75 <div id="check-test-2" aria-label="check-test-2" role="checkbox" aria-checked= "false">Unchecked</div> 76 <div id="check-test-2" aria-label="check-test-2" role="checkbox" aria-checked= "false">Unchecked</div>
76 <div id="check-test-3" aria-label="check-test-3" role="checkbox" aria-checked= "mixed">Mixed</div> 77 <div id="check-test-3" aria-label="check-test-3" role="checkbox" aria-checked= "mixed">Mixed</div>
77 <div id="check-test-4" aria-label="check-test-4" aria-checked="true">Not a che ckbox</div> 78 <div id="check-test-4" aria-label="check-test-4" aria-checked="true">Not a che ckbox</div>
78 </body> 79 </body>
79 </html> 80 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698