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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h

Issue 2713193003: Added a quick heuristic to determine which objects are the target of in-page links and stop ignorin… (Closed)
Patch Set: Fixed Android test. Created 3 years, 8 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 (C) 2012, Google Inc. All rights reserved. 2 * Copyright (C) 2012, 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 bool isControllingVideoElement() const; 104 bool isControllingVideoElement() const;
105 bool isEditable() const override { return isNativeTextControl(); } 105 bool isEditable() const override { return isNativeTextControl(); }
106 bool isEmbeddedObject() const final; 106 bool isEmbeddedObject() const final;
107 bool isFieldset() const final; 107 bool isFieldset() const final;
108 bool isHeading() const final; 108 bool isHeading() const final;
109 bool isHovered() const final; 109 bool isHovered() const final;
110 bool isImage() const final; 110 bool isImage() const final;
111 bool isImageButton() const; 111 bool isImageButton() const;
112 bool isInputImage() const final; 112 bool isInputImage() const final;
113 bool isLink() const override; 113 bool isLink() const override;
114 bool isInPageLinkTarget() const override;
114 bool isMenu() const final; 115 bool isMenu() const final;
115 bool isMenuButton() const final; 116 bool isMenuButton() const final;
116 bool isMeter() const final; 117 bool isMeter() const final;
117 bool isMultiSelectable() const override; 118 bool isMultiSelectable() const override;
118 bool isNativeImage() const; 119 bool isNativeImage() const;
119 bool isNativeTextControl() const final; 120 bool isNativeTextControl() const final;
120 bool isNonNativeTextControl() const final; 121 bool isNonNativeTextControl() const final;
121 bool isPasswordField() const final; 122 bool isPasswordField() const final;
122 bool isProgressIndicator() const override; 123 bool isProgressIndicator() const override;
123 bool isRichlyEditable() const override; 124 bool isRichlyEditable() const override;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 NameSources*, 242 NameSources*,
242 bool* foundTextAlternative) const; 243 bool* foundTextAlternative) const;
243 float stepValueForRange() const; 244 float stepValueForRange() const;
244 bool isDescendantOfElementType(HashSet<QualifiedName>& tagNames) const; 245 bool isDescendantOfElementType(HashSet<QualifiedName>& tagNames) const;
245 String placeholderFromNativeAttribute() const; 246 String placeholderFromNativeAttribute() const;
246 }; 247 };
247 248
248 } // namespace blink 249 } // namespace blink
249 250
250 #endif // AXNodeObject_h 251 #endif // AXNodeObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698