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

Unified Diff: Source/core/layout/LayoutTableSection.cpp

Issue 869813003: Implement elementsFromPoint (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix typeo Created 5 years, 11 months 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/layout/LayoutTableSection.cpp
diff --git a/Source/core/layout/LayoutTableSection.cpp b/Source/core/layout/LayoutTableSection.cpp
index 057a5713e180bf088b26ffa5d606c12c04e7fd3e..bfa7d5577ab12f4149e5ad73572cc2771ce58740 100644
--- a/Source/core/layout/LayoutTableSection.cpp
+++ b/Source/core/layout/LayoutTableSection.cpp
@@ -1578,10 +1578,10 @@ bool LayoutTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResul
return true;
}
}
- if (!result.isRectBasedTest())
+ if (!request.listBased())
break;
}
- if (!result.isRectBasedTest())
+ if (!request.listBased())
break;
}

Powered by Google App Engine
This is Rietveld 408576698