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

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

Issue 679623002: Check whether aria-expanded attribute is defined (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 BLINK_EXPORT void characterOffsets(WebVector<int>&) const; 203 BLINK_EXPORT void characterOffsets(WebVector<int>&) const;
204 BLINK_EXPORT void wordBoundaries(WebVector<int>& starts, WebVector<int>& end s) const; 204 BLINK_EXPORT void wordBoundaries(WebVector<int>& starts, WebVector<int>& end s) const;
205 205
206 // Make this object visible by scrolling as many nested scrollable views as needed. 206 // Make this object visible by scrolling as many nested scrollable views as needed.
207 BLINK_EXPORT void scrollToMakeVisible() const; 207 BLINK_EXPORT void scrollToMakeVisible() const;
208 // Same, but if the whole object can't be made visible, try for this subrect , in local coordinates. 208 // Same, but if the whole object can't be made visible, try for this subrect , in local coordinates.
209 BLINK_EXPORT void scrollToMakeVisibleWithSubFocus(const WebRect&) const; 209 BLINK_EXPORT void scrollToMakeVisibleWithSubFocus(const WebRect&) const;
210 // Scroll this object to a given point in global coordinates of the top-leve l window. 210 // Scroll this object to a given point in global coordinates of the top-leve l window.
211 BLINK_EXPORT void scrollToGlobalPoint(const WebPoint&) const; 211 BLINK_EXPORT void scrollToGlobalPoint(const WebPoint&) const;
212 212
213 // For aria-expanded
214 BLINK_EXPORT bool supportsARIAExpanded() const;
dmazzoni 2014/10/24 07:51:51 Nit: let's just group this one with the large set
je_julie(Not used) 2014/10/24 15:16:02 Done. On 2014/10/24 07:51:51, dmazzoni wrote:
215
213 #if BLINK_IMPLEMENTATION 216 #if BLINK_IMPLEMENTATION
214 WebAXObject(const WTF::PassRefPtr<AXObject>&); 217 WebAXObject(const WTF::PassRefPtr<AXObject>&);
215 WebAXObject& operator=(const WTF::PassRefPtr<AXObject>&); 218 WebAXObject& operator=(const WTF::PassRefPtr<AXObject>&);
216 operator WTF::PassRefPtr<AXObject>() const; 219 operator WTF::PassRefPtr<AXObject>() const;
217 #endif 220 #endif
218 221
219 private: 222 private:
220 WebPrivatePtr<AXObject> m_private; 223 WebPrivatePtr<AXObject> m_private;
221 }; 224 };
222 225
223 } // namespace blink 226 } // namespace blink
224 227
225 #endif 228 #endif
OLDNEW
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698