| Index: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| index 617e4aa073d2c1297a17e637871cd45cac1a592b..1982b14d8b3c7041278a869ae42b941d9d034132 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| @@ -214,8 +214,11 @@ ScrollableArea* AXLayoutObject::getScrollableAreaIfScrollable() const {
|
| return 0;
|
|
|
| LayoutBox* box = toLayoutBox(m_layoutObject);
|
| - if (!box->canBeScrolledAndHasScrollableArea())
|
| - return 0;
|
| + {
|
| + AutoReset<bool> inAXScope(checkingEditableStyleFromAXIndicator(), true);
|
| + if (!box->canBeScrolledAndHasScrollableArea())
|
| + return 0;
|
| + }
|
|
|
| return box->getScrollableArea();
|
| }
|
|
|