Changeset 236112 in webkit
- Timestamp:
- Sep 18, 2018, 2:47:47 AM (8 years ago)
- Location:
- releases/WebKitGTK/webkit-2.22
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/spatial-navigation/snav-display-contents-crash-expected.txt (added)
-
LayoutTests/fast/spatial-navigation/snav-display-contents-crash.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/page/SpatialNavigation.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.22/LayoutTests/ChangeLog
r236110 r236112 1 2018-08-28 Don Olmstead <don.olmstead@sony.com> 2 3 Check for null renderer in canBeScrolledIntoView 4 https://bugs.webkit.org/show_bug.cgi?id=188935 5 6 Reviewed by Simon Fraser. 7 8 * fast/spatial-navigation/snav-display-contents-crash-expected.txt: Added. 9 * fast/spatial-navigation/snav-display-contents-crash.html: Added. 10 1 11 2018-08-28 Youenn Fablet <youenn@apple.com> 2 12 -
releases/WebKitGTK/webkit-2.22/Source/WebCore/ChangeLog
r236111 r236112 1 2018-08-28 Don Olmstead <don.olmstead@sony.com> 2 3 Check for null renderer in canBeScrolledIntoView 4 https://bugs.webkit.org/show_bug.cgi?id=188935 5 6 Reviewed by Simon Fraser. 7 8 Test: fast/spatial-navigation/snav-display-contents-crash.html 9 10 * page/SpatialNavigation.cpp: 11 (WebCore::canBeScrolledIntoView): 12 1 13 2018-08-28 Youenn Fablet <youenn@apple.com> 2 14 -
releases/WebKitGTK/webkit-2.22/Source/WebCore/page/SpatialNavigation.cpp
r232018 r236112 706 706 LayoutRect candidateRect = candidate.rect; 707 707 for (Node* parentNode = candidate.visibleNode->parentNode(); parentNode; parentNode = parentNode->parentNode()) { 708 if (!parentNode->renderer()) 709 continue; 708 710 LayoutRect parentRect = nodeRectInAbsoluteCoordinates(parentNode); 709 711 if (!candidateRect.intersects(parentRect)) {
Note:
See TracChangeset
for help on using the changeset viewer.