Title: [128759] trunk/Source/WebCore
- Revision
- 128759
- Author
- [email protected]
- Date
- 2012-09-17 08:04:43 -0700 (Mon, 17 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 (128758 => 128759)
--- trunk/Source/WebCore/ChangeLog 2012-09-17 15:03:25 UTC (rev 128758)
+++ trunk/Source/WebCore/ChangeLog 2012-09-17 15:04:43 UTC (rev 128759)
@@ -1,5 +1,17 @@
2012-09-17 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-17 Allan Sandfeld Jensen <[email protected]>
+
[TouchAdjustment] Adjusted point outside bounds for non-rectilinear targets
https://bugs.webkit.org/show_bug.cgi?id=96098
Modified: trunk/Source/WebCore/dom/Document.cpp (128758 => 128759)
--- trunk/Source/WebCore/dom/Document.cpp 2012-09-17 15:03:25 UTC (rev 128758)
+++ trunk/Source/WebCore/dom/Document.cpp 2012-09-17 15:04:43 UTC (rev 128759)
@@ -6154,8 +6154,7 @@
return;
Node* innerNodeInDocument = result.innerNode();
- while (innerNodeInDocument && innerNodeInDocument->document() != this)
- innerNodeInDocument = innerNodeInDocument->document()->ownerElement();
+ ASSERT(innerNodeInDocument->document() == this);
Node* oldActiveNode = activeNode();
if (oldActiveNode && !request.active()) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes