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

Unified Diff: Source/core/dom/Event.h

Issue 15179010: Regression: Event#stopPropagation() does not halt bubbling for webkitTransitionEnd (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: correct upload Created 7 years, 7 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/dom/Event.h
diff --git a/Source/core/dom/Event.h b/Source/core/dom/Event.h
index 0ec17f818f76b7f8c5995de468f1c876e2e461d6..f736261dfa81fad18b21bd05d990ce51e8c6fcc0 100644
--- a/Source/core/dom/Event.h
+++ b/Source/core/dom/Event.h
@@ -94,6 +94,7 @@ public:
void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
const AtomicString& type() const { return m_type; }
+ void setType(const AtomicString& type) { m_type = type; }
EventTarget* target() const { return m_target.get(); }
void setTarget(PassRefPtr<EventTarget>);

Powered by Google App Engine
This is Rietveld 408576698