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

Side by Side Diff: components/test_runner/web_ax_object_proxy.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 | « no previous file | components/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_
6 #define COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 6 #define COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 int SelectionEnd(); 90 int SelectionEnd();
91 int SelectionStartLineNumber(); 91 int SelectionStartLineNumber();
92 int SelectionEndLineNumber(); 92 int SelectionEndLineNumber();
93 93
94 bool IsEnabled(); 94 bool IsEnabled();
95 bool IsRequired(); 95 bool IsRequired();
96 bool IsEditable(); 96 bool IsEditable();
97 bool IsRichlyEditable(); 97 bool IsRichlyEditable();
98 bool IsFocused(); 98 bool IsFocused();
99 bool IsFocusable(); 99 bool IsFocusable();
100 bool IsModal();
100 bool IsSelected(); 101 bool IsSelected();
101 bool IsSelectable(); 102 bool IsSelectable();
102 bool IsMultiSelectable(); 103 bool IsMultiSelectable();
103 bool IsSelectedOptionActive(); 104 bool IsSelectedOptionActive();
104 bool IsExpanded(); 105 bool IsExpanded();
105 bool IsChecked(); 106 bool IsChecked();
106 bool IsVisible(); 107 bool IsVisible();
107 bool IsOffScreen(); 108 bool IsOffScreen();
108 bool IsCollapsed(); 109 bool IsCollapsed();
109 bool HasPopup(); 110 bool HasPopup();
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; 224 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override;
224 225
225 private: 226 private:
226 typedef v8::PersistentValueVector<v8::Object> ElementList; 227 typedef v8::PersistentValueVector<v8::Object> ElementList;
227 ElementList elements_; 228 ElementList elements_;
228 }; 229 };
229 230
230 } // namespace test_runner 231 } // namespace test_runner
231 232
232 #endif // COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 233 #endif // COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_
OLDNEW
« no previous file with comments | « no previous file | components/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698