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

Side by Side Diff: public/web/WebAXEnums.h

Issue 23983002: Expose InlineTextBoxes in the accessibility tree. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 WebAXRoleGroup, 104 WebAXRoleGroup,
105 WebAXRoleGrowArea, 105 WebAXRoleGrowArea,
106 WebAXRoleHeading, 106 WebAXRoleHeading,
107 WebAXRoleHelpTag, 107 WebAXRoleHelpTag,
108 WebAXRoleHorizontalRule, 108 WebAXRoleHorizontalRule,
109 WebAXRoleIgnored, 109 WebAXRoleIgnored,
110 WebAXRoleImageMapLink, 110 WebAXRoleImageMapLink,
111 WebAXRoleImageMap, 111 WebAXRoleImageMap,
112 WebAXRoleImage, 112 WebAXRoleImage,
113 WebAXRoleIncrementor, 113 WebAXRoleIncrementor,
114 WebAXRoleInlineTextBox,
114 WebAXRoleLabel, 115 WebAXRoleLabel,
115 WebAXRoleLegend, 116 WebAXRoleLegend,
116 WebAXRoleLink, 117 WebAXRoleLink,
117 WebAXRoleListBoxOption, 118 WebAXRoleListBoxOption,
118 WebAXRoleListBox, 119 WebAXRoleListBox,
119 WebAXRoleListItem, 120 WebAXRoleListItem,
120 WebAXRoleListMarker, 121 WebAXRoleListMarker,
121 WebAXRoleList, 122 WebAXRoleList,
122 WebAXRoleLog, 123 WebAXRoleLog,
123 WebAXRoleMain, 124 WebAXRoleMain,
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 WebAXStatePressed, 202 WebAXStatePressed,
202 WebAXStateProtected, 203 WebAXStateProtected,
203 WebAXStateReadonly, 204 WebAXStateReadonly,
204 WebAXStateRequired, 205 WebAXStateRequired,
205 WebAXStateSelectable, 206 WebAXStateSelectable,
206 WebAXStateSelected, 207 WebAXStateSelected,
207 WebAXStateVertical, 208 WebAXStateVertical,
208 WebAXStateVisited, 209 WebAXStateVisited,
209 }; 210 };
210 211
212 // Text direction, only used for role=WebAXRoleInlineTextBox.
213 enum WebAXTextDirection {
214 WebAXTextDirectionLR,
215 WebAXTextDirectionRL,
216 WebAXTextDirectionTB,
217 WebAXTextDirectionBT
218 };
219
211 } // namespace WebKit 220 } // namespace WebKit
212 221
213 #endif 222 #endif
OLDNEW
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698