Title: [181520] trunk/Source/WebCore
Revision
181520
Author
[email protected]
Date
2015-03-15 19:26:47 -0700 (Sun, 15 Mar 2015)

Log Message

And another fix. Thanks to Hunseop Jeong for the fix.

* html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::runPostTypeUpdateTasks):
(WebCore::HTMLInputElement::didMoveToNewDocument):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (181519 => 181520)


--- trunk/Source/WebCore/ChangeLog	2015-03-16 02:24:10 UTC (rev 181519)
+++ trunk/Source/WebCore/ChangeLog	2015-03-16 02:26:47 UTC (rev 181520)
@@ -1,5 +1,13 @@
 2015-03-15  Simon Fraser  <[email protected]>
 
+        And another fix. Thanks to Hunseop Jeong for the fix.
+
+        * html/HTMLInputElement.cpp:
+        (WebCore::HTMLInputElement::runPostTypeUpdateTasks):
+        (WebCore::HTMLInputElement::didMoveToNewDocument):
+
+2015-03-15  Simon Fraser  <[email protected]>
+
         Fix the touch-event build.
 
         * dom/Document.cpp:

Modified: trunk/Source/WebCore/html/HTMLInputElement.cpp (181519 => 181520)


--- trunk/Source/WebCore/html/HTMLInputElement.cpp	2015-03-16 02:24:10 UTC (rev 181519)
+++ trunk/Source/WebCore/html/HTMLInputElement.cpp	2015-03-16 02:26:47 UTC (rev 181520)
@@ -518,9 +518,9 @@
     bool hasTouchEventHandler = m_inputType->hasTouchEventHandler();
     if (hasTouchEventHandler != m_hasTouchEventHandler) {
         if (hasTouchEventHandler)
-            document().didAddTouchEventHandler(this);
+            document().didAddTouchEventHandler(*this);
         else
-            document().didRemoveTouchEventHandler(this);
+            document().didRemoveTouchEventHandler(*this);
         m_hasTouchEventHandler = hasTouchEventHandler;
     }
 #endif
@@ -1515,7 +1515,7 @@
 
 #if ENABLE(TOUCH_EVENTS)
     if (m_hasTouchEventHandler)
-        document().didAddTouchEventHandler(this);
+        document().didAddTouchEventHandler(*this);
 #endif
 
     HTMLTextFormControlElement::didMoveToNewDocument(oldDocument);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to