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

Side by Side Diff: content/shell/renderer/test_runner/web_ax_object_proxy.h

Issue 805793006: Provides API for testing number of table headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | content/shell/renderer/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 CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 bool IsVisible(); 87 bool IsVisible();
88 bool IsOffScreen(); 88 bool IsOffScreen();
89 bool IsCollapsed(); 89 bool IsCollapsed();
90 bool HasPopup(); 90 bool HasPopup();
91 bool IsValid(); 91 bool IsValid();
92 bool IsReadOnly(); 92 bool IsReadOnly();
93 std::string Orientation(); 93 std::string Orientation();
94 int ClickPointX(); 94 int ClickPointX();
95 int ClickPointY(); 95 int ClickPointY();
96 int32_t RowCount(); 96 int32_t RowCount();
97 int32_t RowHeadersCount();
97 int32_t ColumnCount(); 98 int32_t ColumnCount();
99 int32_t ColumnHeadersCount();
98 bool IsClickable(); 100 bool IsClickable();
99 bool IsButtonStateMixed(); 101 bool IsButtonStateMixed();
100 102
101 // Bound methods. 103 // Bound methods.
102 v8::Handle<v8::Object> AriaControlsElementAtIndex(unsigned index); 104 v8::Handle<v8::Object> AriaControlsElementAtIndex(unsigned index);
103 v8::Handle<v8::Object> AriaFlowToElementAtIndex(unsigned index); 105 v8::Handle<v8::Object> AriaFlowToElementAtIndex(unsigned index);
104 v8::Handle<v8::Object> AriaOwnsElementAtIndex(unsigned index); 106 v8::Handle<v8::Object> AriaOwnsElementAtIndex(unsigned index);
105 std::string AllAttributes(); 107 std::string AllAttributes();
106 std::string AttributesOfChildren(); 108 std::string AttributesOfChildren();
107 int LineForIndex(int index); 109 int LineForIndex(int index);
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&); 167 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&);
166 168
167 private: 169 private:
168 typedef v8::PersistentValueVector<v8::Object> ElementList; 170 typedef v8::PersistentValueVector<v8::Object> ElementList;
169 ElementList elements_; 171 ElementList elements_;
170 }; 172 };
171 173
172 } // namespace content 174 } // namespace content
173 175
174 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 176 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_
OLDNEW
« no previous file with comments | « no previous file | content/shell/renderer/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698