| 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 ee6d324fe3dbacd19fe1e53a068af1ecfa66da3b..db0e19a69837406329c6badb754d0a8a627e0ee6 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| @@ -102,6 +102,11 @@ bool HTMLPlugInElement::canProcessDrag() const
|
| return pluginWidget() && pluginWidget()->isPluginView() && toPluginView(pluginWidget())->canProcessDrag();
|
| }
|
|
|
| +bool HTMLPlugInElement::canStartSelection() const
|
| +{
|
| + return useFallbackContent() && Node::canStartSelection();
|
| +}
|
| +
|
| bool HTMLPlugInElement::willRespondToMouseClickEvents()
|
| {
|
| if (isDisabledFormControl())
|
|
|