| Index: third_party/WebKit/Source/core/layout/LayoutPart.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutPart.cpp b/third_party/WebKit/Source/core/layout/LayoutPart.cpp
|
| index 400584a003559365c891092d0467552eddfe435d..eb6c06f9db8d1e953701180975140d9609615526 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutPart.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutPart.cpp
|
| @@ -121,7 +121,13 @@ bool LayoutPart::requiresAcceleratedCompositing() const
|
| if (widget() && widget()->isPluginView() && toPluginView(widget())->platformLayer())
|
| return true;
|
|
|
| - if (!node() || !node()->isFrameOwnerElement())
|
| + if (!node())
|
| + return false;
|
| +
|
| + if (node()->isFrameletElement())
|
| + return true;
|
| +
|
| + if (!node()->isFrameOwnerElement())
|
| return false;
|
|
|
| HTMLFrameOwnerElement* element = toHTMLFrameOwnerElement(node());
|
|
|