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

Side by Side Diff: third_party/WebKit/public/web/WebAXObject.h

Issue 2666873005: Implement aria-modal (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | no next file » | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 BLINK_EXPORT bool isChecked() const; 131 BLINK_EXPORT bool isChecked() const;
132 BLINK_EXPORT bool isClickable() const; 132 BLINK_EXPORT bool isClickable() const;
133 BLINK_EXPORT bool isCollapsed() const; 133 BLINK_EXPORT bool isCollapsed() const;
134 BLINK_EXPORT bool isControl() const; 134 BLINK_EXPORT bool isControl() const;
135 BLINK_EXPORT bool isEnabled() const; 135 BLINK_EXPORT bool isEnabled() const;
136 BLINK_EXPORT WebAXExpanded isExpanded() const; 136 BLINK_EXPORT WebAXExpanded isExpanded() const;
137 BLINK_EXPORT bool isFocused() const; 137 BLINK_EXPORT bool isFocused() const;
138 BLINK_EXPORT bool isHovered() const; 138 BLINK_EXPORT bool isHovered() const;
139 BLINK_EXPORT bool isLinked() const; 139 BLINK_EXPORT bool isLinked() const;
140 BLINK_EXPORT bool isLoaded() const; 140 BLINK_EXPORT bool isLoaded() const;
141 BLINK_EXPORT bool isModal() const;
141 BLINK_EXPORT bool isMultiSelectable() const; 142 BLINK_EXPORT bool isMultiSelectable() const;
142 BLINK_EXPORT bool isOffScreen() const; 143 BLINK_EXPORT bool isOffScreen() const;
143 BLINK_EXPORT bool isPasswordField() const; 144 BLINK_EXPORT bool isPasswordField() const;
144 BLINK_EXPORT bool isPressed() const; 145 BLINK_EXPORT bool isPressed() const;
145 BLINK_EXPORT bool isReadOnly() const; 146 BLINK_EXPORT bool isReadOnly() const;
146 BLINK_EXPORT bool isRequired() const; 147 BLINK_EXPORT bool isRequired() const;
147 BLINK_EXPORT bool isSelected() const; 148 BLINK_EXPORT bool isSelected() const;
148 BLINK_EXPORT bool isSelectedOptionActive() const; 149 BLINK_EXPORT bool isSelectedOptionActive() const;
149 BLINK_EXPORT bool isVisible() const; 150 BLINK_EXPORT bool isVisible() const;
150 BLINK_EXPORT bool isVisited() const; 151 BLINK_EXPORT bool isVisited() const;
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 operator AXObject*() const; 356 operator AXObject*() const;
356 #endif 357 #endif
357 358
358 private: 359 private:
359 WebPrivatePtr<AXObject> m_private; 360 WebPrivatePtr<AXObject> m_private;
360 }; 361 };
361 362
362 } // namespace blink 363 } // namespace blink
363 364
364 #endif 365 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698