| Index: third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| index 5f67f59331afd636cda71827c23e49cf7966ed55..72e6a3c10617a0eaf403e76936f53357afc908c2 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| @@ -623,6 +623,11 @@ void LayoutBox::absoluteQuads(Vector<FloatQuad>& quads) const
|
| quads.append(localToAbsoluteQuad(FloatRect(0, 0, m_frameRect.width().toFloat(), m_frameRect.height().toFloat())));
|
| }
|
|
|
| +FloatRect LayoutBox::localBoundingBoxRectForAccessibility() const
|
| +{
|
| + return FloatRect(0, 0, m_frameRect.width().toFloat(), m_frameRect.height().toFloat());
|
| +}
|
| +
|
| void LayoutBox::updateLayerTransformAfterLayout()
|
| {
|
| // Transform-origin depends on box size, so we need to update the layer transform after layout.
|
|
|