| Index: third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| index db0e19a69837406329c6badb754d0a8a627e0ee6..b62b61d259caa823d3906ddce8810531b4a1da8d 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| @@ -375,9 +375,9 @@ LayoutPart* HTMLPlugInElement::layoutPartForJSBindings() const
|
|
|
| bool HTMLPlugInElement::isKeyboardFocusable() const
|
| {
|
| - if (!document().isActive())
|
| - return false;
|
| - return pluginWidget() && pluginWidget()->isPluginView() && toPluginView(pluginWidget())->supportsKeyboardFocus();
|
| + if (HTMLFrameOwnerElement::isKeyboardFocusable())
|
| + return true;
|
| + return document().isActive() && pluginWidget() && pluginWidget()->isPluginView() && toPluginView(pluginWidget())->supportsKeyboardFocus();
|
| }
|
|
|
| bool HTMLPlugInElement::hasCustomFocusLogic() const
|
|
|