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

Unified Diff: Source/core/html/HTMLPlugInElement.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/HTMLPlugInElement.h ('k') | Source/core/html/HTMLPlugInImageElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLPlugInElement.cpp
diff --git a/Source/core/html/HTMLPlugInElement.cpp b/Source/core/html/HTMLPlugInElement.cpp
index 0bb097b5b6cac92deb5ec77a20d6ba95e273dc98..835ef8538466e1b60a2487a669b49d285f47e189 100644
--- a/Source/core/html/HTMLPlugInElement.cpp
+++ b/Source/core/html/HTMLPlugInElement.cpp
@@ -79,7 +79,7 @@ bool HTMLPlugInElement::willRespondToMouseClickEvents()
return true;
}
-void HTMLPlugInElement::detach()
+void HTMLPlugInElement::detach(const AttachContext& context)
{
m_instance.clear();
@@ -94,7 +94,7 @@ void HTMLPlugInElement::detach()
m_NPObject = 0;
}
- HTMLFrameOwnerElement::detach();
+ HTMLFrameOwnerElement::detach(context);
}
void HTMLPlugInElement::resetInstance()
« no previous file with comments | « Source/core/html/HTMLPlugInElement.h ('k') | Source/core/html/HTMLPlugInImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698