Chromium Code Reviews| Index: components/test_runner/web_ax_object_proxy.h |
| diff --git a/components/test_runner/web_ax_object_proxy.h b/components/test_runner/web_ax_object_proxy.h |
| index 626a154259c2c33570c6d0e813daaba5cf6cabbf..c61fedf2a44c6b86e647341f49aa7983b9d27011 100644 |
| --- a/components/test_runner/web_ax_object_proxy.h |
| +++ b/components/test_runner/web_ax_object_proxy.h |
| @@ -124,6 +124,10 @@ class WebAXObjectProxy : public gin::Wrappable<WebAXObjectProxy> { |
| int32_t ColumnHeadersCount(); |
| bool IsClickable(); |
| bool IsButtonStateMixed(); |
| + int BoundsX(); |
| + int BoundsY(); |
| + int BoundsWidth(); |
| + int BoundsHeight(); |
| // Bound methods. |
| v8::Local<v8::Object> AriaControlsElementAtIndex(unsigned index); |
| @@ -161,11 +165,19 @@ class WebAXObjectProxy : public gin::Wrappable<WebAXObjectProxy> { |
| void ScrollToMakeVisible(); |
| void ScrollToMakeVisibleWithSubFocus(int x, int y, int width, int height); |
| void ScrollToGlobalPoint(int x, int y); |
| + int ScrollX(); |
|
aboxhall
2016/06/09 23:05:30
Mention this in description too?
dmazzoni
2016/06/10 16:55:39
Done.
|
| + int ScrollY(); |
| int WordStart(int character_index); |
| int WordEnd(int character_index); |
| v8::Local<v8::Object> NextOnLine(); |
| v8::Local<v8::Object> PreviousOnLine(); |
| std::string MisspellingAtIndex(int index); |
| + v8::Local<v8::Object> OffsetContainer(); |
| + int BoundsInContainerX(); |
| + int BoundsInContainerY(); |
| + int BoundsInContainerWidth(); |
| + int BoundsInContainerHeight(); |
| + bool HasNonIdentityTransform(); |
| std::string Name(); |
| std::string NameFrom(); |