| 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..df2d19524500e8ad0067249d050a4fbe2a85788a 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();
|
| + float BoundsX();
|
| + float BoundsY();
|
| + float BoundsWidth();
|
| + float 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();
|
| + 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();
|
| + float BoundsInContainerX();
|
| + float BoundsInContainerY();
|
| + float BoundsInContainerWidth();
|
| + float BoundsInContainerHeight();
|
| + bool HasNonIdentityTransform();
|
|
|
| std::string Name();
|
| std::string NameFrom();
|
|
|