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

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

Issue 2857413002: htmlTag was missing from the list of stringAttributes for an automationNode (Closed)
Patch Set: Created 3 years, 7 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698