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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 </tr> | 69 </tr> |
70 </table> | 70 </table> |
71 | 71 |
72 <p id="Spanish" lang="es-ES">Hola</p> | 72 <p id="Spanish" lang="es-ES">Hola</p> |
73 | 73 |
74 <!-- checked attribute --> | 74 <!-- checked attribute --> |
75 <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> |
76 <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> |
77 <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> |
78 <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> |
| 79 |
| 80 <!-- htmlTag attribute --> |
| 81 <figure>Go figure!</figure> |
| 82 |
79 </body> | 83 </body> |
80 </html> | 84 </html> |
OLD | NEW |