| 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 ff44de7d9d64802a134fadff237de56943976df8..051b53a89a160740e1922f65329a41a3396880de 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()) | 
|  |