Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(971)

Unified Diff: Source/core/html/PluginDocument.cpp

Issue 16599003: :hover style not applied on hover if its display property is different from original style's (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch (fixed test that was expected to fail and is now passing) Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/PluginDocument.h ('k') | Source/core/html/shadow/ClearButtonElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/PluginDocument.cpp
diff --git a/Source/core/html/PluginDocument.cpp b/Source/core/html/PluginDocument.cpp
index 4b4597a9c8909cf61557f6d18da710ea6bc19742..ad472781d3b92699a47cd31ccef9160979a73d28 100644
--- a/Source/core/html/PluginDocument.cpp
+++ b/Source/core/html/PluginDocument.cpp
@@ -159,13 +159,13 @@ Node* PluginDocument::pluginNode()
return m_pluginNode.get();
}
-void PluginDocument::detach()
+void PluginDocument::detach(const AttachContext& context)
{
// Release the plugin node so that we don't have a circular reference.
m_pluginNode = 0;
if (FrameLoader* loader = frame()->loader())
loader->client()->redirectDataToPlugin(0);
- HTMLDocument::detach();
+ HTMLDocument::detach(context);
}
void PluginDocument::cancelManualPluginLoad()
« no previous file with comments | « Source/core/html/PluginDocument.h ('k') | Source/core/html/shadow/ClearButtonElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698