| Index: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| index 9830da4f64792410d883ba2eec74fb7ea779f764..a0f6aa0fdf3a05c2cc32e9997e79cd08e4be8066 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| @@ -743,9 +743,13 @@ void HTMLSelectElement::SetRecalcListItems() {
|
|
|
| if (GetLayoutObject()) {
|
| if (AXObjectCache* cache =
|
| - GetLayoutObject()->GetDocument().ExistingAXObjectCache())
|
| + GetLayoutObject()->GetDocument().ExistingAXObjectCache()) {
|
| + LOG(INFO) << "Calling childrenChanged";
|
| cache->ChildrenChanged(this);
|
| + return;
|
| + }
|
| }
|
| + LOG(INFO) << "Didn't call childrenChanged";
|
| }
|
|
|
| void HTMLSelectElement::RecalcListItems() const {
|
|
|