Changeset 128759 in webkit


Ignore:
Timestamp:
Sep 17, 2012 8:04:43 AM (12 years ago)
Author:
allan.jensen@nokia.com
Message:

Revert r127457 and following fixes due to several hit-testing regressions
https://bugs.webkit.org/show_bug.cgi?id=96830

Reviewed by Antonio Gomes.

The revert misssed one related follow-up.

  • dom/Document.cpp:

(WebCore::Document::updateHoverActiveState):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r128757 r128759  
     12012-09-17  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
     2
     3        Revert r127457 and following fixes due to several hit-testing regressions
     4        https://bugs.webkit.org/show_bug.cgi?id=96830
     5
     6        Reviewed by Antonio Gomes.
     7
     8        The revert misssed one related follow-up.
     9
     10        * dom/Document.cpp:
     11        (WebCore::Document::updateHoverActiveState):
     12
    1132012-09-17  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
    214
  • trunk/Source/WebCore/dom/Document.cpp

    r128679 r128759  
    61556155
    61566156    Node* innerNodeInDocument = result.innerNode();
    6157     while (innerNodeInDocument && innerNodeInDocument->document() != this)
    6158         innerNodeInDocument = innerNodeInDocument->document()->ownerElement();
     6157    ASSERT(innerNodeInDocument->document() == this);
    61596158
    61606159    Node* oldActiveNode = activeNode();
Note: See TracChangeset for help on using the changeset viewer.