Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(969)

Unified Diff: Source/core/page/FocusController.cpp

Issue 105973003: Improve spatial navigation on overlapping elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/page/FocusController.cpp
diff --git a/Source/core/page/FocusController.cpp b/Source/core/page/FocusController.cpp
index be1d745fb6311e48401069eccf40756d374e5fff..d9d382fec88b631f5b40adc22e8ac1672624748f 100644
--- a/Source/core/page/FocusController.cpp
+++ b/Source/core/page/FocusController.cpp
@@ -744,7 +744,8 @@ static void updateFocusCandidateIfNeeded(FocusDirection direction, const FocusCa
}
LayoutRect intersectionRect = intersection(candidate.rect, closest.rect);
- if (!intersectionRect.isEmpty() && !areElementsOnSameLine(closest, candidate)) {
+ if (!intersectionRect.isEmpty() && !areElementsOnSameLine(closest, candidate)
+ && intersectionRect == candidate.rect) {
// If 2 nodes are intersecting, do hit test to find which node in on top.
LayoutUnit x = intersectionRect.x() + intersectionRect.width() / 2;
LayoutUnit y = intersectionRect.y() + intersectionRect.height() / 2;

Powered by Google App Engine
This is Rietveld 408576698