Changeset 181520 in webkit


Ignore:
Timestamp:
Mar 15, 2015, 7:26:47 PM (11 years ago)
Author:
Simon Fraser
Message:

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

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::runPostTypeUpdateTasks):
(WebCore::HTMLInputElement::didMoveToNewDocument):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181519 r181520  
     12015-03-15  Simon Fraser  <simon.fraser@apple.com>
     2
     3        And another fix. Thanks to Hunseop Jeong for the fix.
     4
     5        * html/HTMLInputElement.cpp:
     6        (WebCore::HTMLInputElement::runPostTypeUpdateTasks):
     7        (WebCore::HTMLInputElement::didMoveToNewDocument):
     8
    192015-03-15  Simon Fraser  <simon.fraser@apple.com>
    210
  • trunk/Source/WebCore/html/HTMLInputElement.cpp

    r181408 r181520  
    519519    if (hasTouchEventHandler != m_hasTouchEventHandler) {
    520520        if (hasTouchEventHandler)
    521             document().didAddTouchEventHandler(this);
     521            document().didAddTouchEventHandler(*this);
    522522        else
    523             document().didRemoveTouchEventHandler(this);
     523            document().didRemoveTouchEventHandler(*this);
    524524        m_hasTouchEventHandler = hasTouchEventHandler;
    525525    }
     
    15161516#if ENABLE(TOUCH_EVENTS)
    15171517    if (m_hasTouchEventHandler)
    1518         document().didAddTouchEventHandler(this);
     1518        document().didAddTouchEventHandler(*this);
    15191519#endif
    15201520
Note: See TracChangeset for help on using the changeset viewer.