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

Side by Side Diff: ui/accessibility/ax_enums.idl

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Single quote 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // TODO(nektar): Migrate entire file to Mojoq. 5 // TODO(nektar): Migrate entire file to Mojoq.
6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
7 // until the Chromium and Blink trees are merged. 7 // until the Chromium and Blink trees are merged.
8 [camel_case_enum_to_string=true] namespace ui { 8 [camel_case_enum_to_string=true] namespace ui {
9 9
10 // For new entries to the following four enums, also add to 10 // For new entries to the following four enums, also add to
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 date_time, 107 date_time,
108 definition, 108 definition,
109 description_list_detail, 109 description_list_detail,
110 description_list, 110 description_list,
111 description_list_term, 111 description_list_term,
112 desktop, 112 desktop,
113 details, 113 details,
114 dialog, 114 dialog,
115 directory, 115 directory,
116 disclosure_triangle, 116 disclosure_triangle,
117 div,
118 document, 117 document,
119 embedded_object, 118 embedded_object,
120 feed, 119 feed,
121 figcaption, 120 figcaption,
122 figure, 121 figure,
123 footer, 122 footer,
124 form, 123 form,
124 generic_container,
125 grid, 125 grid,
126 group, 126 group,
127 heading, 127 heading,
128 iframe, 128 iframe,
129 iframe_presentational, 129 iframe_presentational,
130 ignored, 130 ignored,
131 image_map_link, 131 image_map_link,
132 image_map, 132 image_map,
133 image, 133 image,
134 inline_text_box, 134 inline_text_box,
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 // First node is before the second one. 663 // First node is before the second one.
664 before, 664 before,
665 665
666 // Nodes are the same. 666 // Nodes are the same.
667 equal, 667 equal,
668 668
669 // First node is after the second one. 669 // First node is after the second one.
670 after 670 after
671 }; 671 };
672 }; 672 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698