| Index: components/test_runner/web_ax_object_proxy.cc
|
| diff --git a/components/test_runner/web_ax_object_proxy.cc b/components/test_runner/web_ax_object_proxy.cc
|
| index 0926f31b2cf12d29bf3d9e8ef11e4d61d11e3bab..38c6afd513946392debf477c2e2d80ac40809b2d 100644
|
| --- a/components/test_runner/web_ax_object_proxy.cc
|
| +++ b/components/test_runner/web_ax_object_proxy.cc
|
| @@ -508,6 +508,7 @@ WebAXObjectProxy::GetObjectTemplateBuilder(v8::Isolate* isolate) {
|
| &WebAXObjectProxy::SelectionEndLineNumber)
|
| .SetProperty("isEnabled", &WebAXObjectProxy::IsEnabled)
|
| .SetProperty("isRequired", &WebAXObjectProxy::IsRequired)
|
| + .SetProperty("isEditable", &WebAXObjectProxy::IsEditable)
|
| .SetProperty("isRichlyEditable", &WebAXObjectProxy::IsRichlyEditable)
|
| .SetProperty("isFocused", &WebAXObjectProxy::IsFocused)
|
| .SetProperty("isFocusable", &WebAXObjectProxy::IsFocusable)
|
| @@ -834,6 +835,11 @@ bool WebAXObjectProxy::IsRequired() {
|
| return accessibility_object_.isRequired();
|
| }
|
|
|
| +bool WebAXObjectProxy::IsEditable() {
|
| + accessibility_object_.updateLayoutAndCheckValidity();
|
| + return accessibility_object_.isEditable();
|
| +}
|
| +
|
| bool WebAXObjectProxy::IsRichlyEditable() {
|
| accessibility_object_.updateLayoutAndCheckValidity();
|
| return accessibility_object_.isRichlyEditable();
|
|
|