Title: [128869] trunk/Source/WebCore
Revision
128869
Author
[email protected]
Date
2012-09-18 03:28:02 -0700 (Tue, 18 Sep 2012)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (128868 => 128869)


--- trunk/Source/WebCore/ChangeLog	2012-09-18 10:23:13 UTC (rev 128868)
+++ trunk/Source/WebCore/ChangeLog	2012-09-18 10:28:02 UTC (rev 128869)
@@ -1,3 +1,16 @@
+2012-09-19  Allan Sandfeld Jensen  <[email protected]>
+
+        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):
+
+
 2012-09-18  Mihnea Ovidenie  <[email protected]>
 
         [CSSRegions]Flag auto-height regions

Modified: trunk/Source/WebCore/dom/Document.cpp (128868 => 128869)


--- trunk/Source/WebCore/dom/Document.cpp	2012-09-18 10:23:13 UTC (rev 128868)
+++ trunk/Source/WebCore/dom/Document.cpp	2012-09-18 10:28:02 UTC (rev 128869)
@@ -6154,8 +6154,7 @@
         return;
 
     Node* innerNodeInDocument = result.innerNode();
-    while (innerNodeInDocument && innerNodeInDocument->document() != this)
-        innerNodeInDocument = innerNodeInDocument->document()->ownerElement();
+    ASSERT(!innerNodeInDocument || innerNodeInDocument->document() == this);
 
     Node* oldActiveNode = activeNode();
     if (oldActiveNode && !request.active()) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to