| 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 b892249013a7350b5f45a2c2d1844f6a1618953d..4445b63bb9c56609ac56b5dffba20f9e3c34ab55 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())
|
|
|