| Index: third_party/WebKit/Source/web/WebAXObject.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| index ca85de8e918953e8013f5a6ad7e3a2385646cc57..3236d38804ddf20d12bf553f688c864646af7db7 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -636,6 +636,14 @@ WebRect WebAXObject::boundingBoxRect() const
|
| return pixelSnappedIntRect(m_private->elementRect());
|
| }
|
|
|
| +WebString WebAXObject::fontFamily() const
|
| +{
|
| + if (isDetached())
|
| + return WebString();
|
| +
|
| + return m_private->fontFamily();
|
| +}
|
| +
|
| float WebAXObject::fontSize() const
|
| {
|
| if (isDetached())
|
|
|