Chromium Code Reviews

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.
Jump to:
View side-by-side diff with in-line comments
« 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