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

Side by Side Diff: components/test_runner/web_ax_object_proxy.h

Issue 1768753003: Implemented the reporting of text style and language information on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test expectations. Created 4 years, 9 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 bool IsVisible(); 104 bool IsVisible();
105 bool IsOffScreen(); 105 bool IsOffScreen();
106 bool IsCollapsed(); 106 bool IsCollapsed();
107 bool HasPopup(); 107 bool HasPopup();
108 bool IsValid(); 108 bool IsValid();
109 bool IsReadOnly(); 109 bool IsReadOnly();
110 unsigned int BackgroundColor(); 110 unsigned int BackgroundColor();
111 unsigned int Color(); 111 unsigned int Color();
112 // For input elements of type color. 112 // For input elements of type color.
113 unsigned int ColorValue(); 113 unsigned int ColorValue();
114 std::string FontFamily();
114 float FontSize(); 115 float FontSize();
115 std::string Orientation(); 116 std::string Orientation();
116 int PosInSet(); 117 int PosInSet();
117 int SetSize(); 118 int SetSize();
118 int ClickPointX(); 119 int ClickPointX();
119 int ClickPointY(); 120 int ClickPointY();
120 int32_t RowCount(); 121 int32_t RowCount();
121 int32_t RowHeadersCount(); 122 int32_t RowHeadersCount();
122 int32_t ColumnCount(); 123 int32_t ColumnCount();
123 int32_t ColumnHeadersCount(); 124 int32_t ColumnHeadersCount();
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; 205 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override;
205 206
206 private: 207 private:
207 typedef v8::PersistentValueVector<v8::Object> ElementList; 208 typedef v8::PersistentValueVector<v8::Object> ElementList;
208 ElementList elements_; 209 ElementList elements_;
209 }; 210 };
210 211
211 } // namespace test_runner 212 } // namespace test_runner
212 213
213 #endif // COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 214 #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