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

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

Issue 2707263011: Test aria-pressed=mixed on windows (Closed)
Patch Set: git cl try 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 /* 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 bool IsRichlyEditable() const override; 124 bool IsRichlyEditable() const override;
125 bool IsSlider() const override; 125 bool IsSlider() const override;
126 bool IsNativeSlider() const override; 126 bool IsNativeSlider() const override;
127 bool IsMoveableSplitter() const override; 127 bool IsMoveableSplitter() const override;
128 128
129 // Check object state. 129 // Check object state.
130 bool IsClickable() const final; 130 bool IsClickable() const final;
131 bool IsEnabled() const override; 131 bool IsEnabled() const override;
132 AccessibilityExpanded IsExpanded() const override; 132 AccessibilityExpanded IsExpanded() const override;
133 bool IsModal() const final; 133 bool IsModal() const final;
134 bool IsPressed() const final; 134 AccessibilityButtonState PressedState() const;
135 bool IsReadOnly() const override; 135 bool IsReadOnly() const override;
136 bool IsRequired() const final; 136 bool IsRequired() const final;
137 137
138 // Check whether certain properties can be modified. 138 // Check whether certain properties can be modified.
139 bool CanSetFocusAttribute() const override; 139 bool CanSetFocusAttribute() const override;
140 bool CanSetValueAttribute() const override; 140 bool CanSetValueAttribute() const override;
141 bool CanSetSelectedAttribute() const override; 141 bool CanSetSelectedAttribute() const override;
142 142
143 // Properties of static elements. 143 // Properties of static elements.
144 RGBA32 ColorValue() const final; 144 RGBA32 ColorValue() const final;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 NameSources*, 240 NameSources*,
241 bool* found_text_alternative) const; 241 bool* found_text_alternative) const;
242 float StepValueForRange() const; 242 float StepValueForRange() const;
243 bool IsDescendantOfElementType(HashSet<QualifiedName>& tag_names) const; 243 bool IsDescendantOfElementType(HashSet<QualifiedName>& tag_names) const;
244 String PlaceholderFromNativeAttribute() const; 244 String PlaceholderFromNativeAttribute() const;
245 }; 245 };
246 246
247 } // namespace blink 247 } // namespace blink
248 248
249 #endif // AXNodeObject_h 249 #endif // AXNodeObject_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/AXObject.h ('k') | third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698