OLD | NEW |
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 <td rowspan="2" role="cell">Cell spanning two rows</td> | 63 <td rowspan="2" role="cell">Cell spanning two rows</td> |
64 </tr> | 64 </tr> |
65 <tr role="row"> | 65 <tr role="row"> |
66 <td role="cell">Cell spanning one column</td> | 66 <td role="cell">Cell spanning one column</td> |
67 <td role="cell">Cell spanning one column</td> | 67 <td role="cell">Cell spanning one column</td> |
68 </tr> | 68 </tr> |
69 </table> | 69 </table> |
70 | 70 |
71 <p id="Spanish" lang="es-ES">Hola</p> | 71 <p id="Spanish" lang="es-ES">Hola</p> |
72 | 72 |
73 | 73 <!-- 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-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-4" aria-label="check-test-4" aria-checked="true">Not a che
ckbox</div> |
74 </body> | 78 </body> |
75 </html> | 79 </html> |
OLD | NEW |