| Index: Source/web/ChromeClientImpl.cpp
|
| diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
|
| index ec7b15d759e0ec26c9d8a69ddf315091ebd0edde..f2d82739639dac84d706e81ba4f8aa4e4aaf17fc 100644
|
| --- a/Source/web/ChromeClientImpl.cpp
|
| +++ b/Source/web/ChromeClientImpl.cpp
|
| @@ -777,8 +777,8 @@ void ChromeClientImpl::postAccessibilityNotification(AXObject* obj, AXObjectCach
|
| // Alert assistive technology about the accessibility object notification.
|
| if (!obj)
|
| return;
|
| -
|
| - m_webView->client()->postAccessibilityEvent(WebAXObject(obj), toWebAXEvent(notification));
|
| + if (m_webView->client())
|
| + m_webView->client()->postAccessibilityEvent(WebAXObject(obj), toWebAXEvent(notification));
|
| }
|
|
|
| String ChromeClientImpl::acceptLanguages()
|
|
|