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

Unified Diff: Source/core/html/shadow/TextControlInnerElements.h

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 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
Index: Source/core/html/shadow/TextControlInnerElements.h
diff --git a/Source/core/html/shadow/TextControlInnerElements.h b/Source/core/html/shadow/TextControlInnerElements.h
index 7a74919ea43b27d5aa1955467a2f6b7afea3e62d..eb13c574537427621e8a4d6b90e634601ee27c42 100644
--- a/Source/core/html/shadow/TextControlInnerElements.h
+++ b/Source/core/html/shadow/TextControlInnerElements.h
@@ -91,7 +91,7 @@ public:
private:
SearchFieldCancelButtonElement(Document*);
virtual const AtomicString& shadowPseudoId() const;
- virtual void detach();
+ virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
virtual bool isMouseFocusable() const { return false; }
bool m_capturing;
@@ -112,7 +112,7 @@ public:
static PassRefPtr<InputFieldSpeechButtonElement> create(Document*);
virtual ~InputFieldSpeechButtonElement();
- virtual void detach();
+ virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
virtual void defaultEventHandler(Event*);
virtual bool willRespondToMouseClickEvents();
virtual bool isInputFieldSpeechButtonElement() const { return true; }
@@ -131,7 +131,7 @@ private:
void setState(SpeechInputState state);
virtual const AtomicString& shadowPseudoId() const;
virtual bool isMouseFocusable() const { return false; }
- virtual void attach();
+ virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
bool m_capturing;
SpeechInputState m_state;

Powered by Google App Engine
This is Rietveld 408576698