Changeset 267092 in webkit
- Timestamp:
- Sep 15, 2020, 11:39:24 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/ios-wk2/TestExpectations (modified) (2 diffs)
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit/WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r267086 r267092 1 2020-09-15 Simon Fraser <simon.fraser@apple.com> 2 3 REGRESSION (r267002): ASSERTION FAILED:[ iOS wk2 Debug ] !HashTranslator::equal(KeyTraits::emptyValue(), key) on compositing/ios/overflow-scroll-update-overlap.html 4 https://bugs.webkit.org/show_bug.cgi?id=216520 5 <rdar://problem/68894931> 6 7 Reviewed by Tim Horton. 8 9 * platform/ios-wk2/TestExpectations: 10 1 11 2020-09-14 Sergio Villar Senin <svillar@igalia.com> 2 12 -
trunk/LayoutTests/platform/ios-wk2/TestExpectations
r267072 r267092 1393 1393 webkit.org/b/208585 imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-removetrack.https.html [ Pass Failure ] 1394 1394 1395 webkit.org/b/208587 scrollingcoordinator/ios/fixed-frame-overflow-swipe.html [ Pass ImageOnlyFailure Crash]1395 webkit.org/b/208587 scrollingcoordinator/ios/fixed-frame-overflow-swipe.html [ Pass ImageOnlyFailure ] 1396 1396 1397 1397 webkit.org/b/208590 [ Debug ] fast/events/beforeunload-prompt.html [ Pass Crash ] … … 1891 1891 webkit.org/b/186045 imported/w3c/web-platform-tests/css/css-ui/text-overflow-017.html [ Skip ] 1892 1892 webkit.org/b/186045 imported/w3c/web-platform-tests/css/css-values/vh_not_refreshing_on_chrome.html [ Skip ] 1893 1894 webkit.org/b/216520 [ Debug ] fast/scrolling/ios/click-events-during-momentum-scroll-in-overflow.html [ Crash ] -
trunk/Source/WebKit/ChangeLog
r267091 r267092 1 2020-09-15 Simon Fraser <simon.fraser@apple.com> 2 3 REGRESSION (r267002): ASSERTION FAILED:[ iOS wk2 Debug ] !HashTranslator::equal(KeyTraits::emptyValue(), key) on compositing/ios/overflow-scroll-update-overlap.html 4 https://bugs.webkit.org/show_bug.cgi?id=216520 5 <rdar://problem/68894931> 6 7 Reviewed by Tim Horton. 8 9 Avoid hash lookups with zero nodeIDs. 10 11 * WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm: 12 (WebKit::RemoteScrollingCoordinator::isRubberBandInProgress const): 13 (WebKit::RemoteScrollingCoordinator::isUserScrollInProgress const): 14 (WebKit::RemoteScrollingCoordinator::isScrollSnapInProgress const): 15 1 16 2020-09-15 Alex Christensen <achristensen@webkit.org> 2 17 -
trunk/Source/WebKit/WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm
r267002 r267092 75 75 bool RemoteScrollingCoordinator::isRubberBandInProgress(ScrollingNodeID nodeID) const 76 76 { 77 if (!nodeID) 78 return false; 77 79 return m_nodesWithActiveRubberBanding.contains(nodeID); 78 80 } … … 80 82 bool RemoteScrollingCoordinator::isUserScrollInProgress(ScrollingNodeID nodeID) const 81 83 { 84 if (!nodeID) 85 return false; 82 86 return m_nodesWithActiveUserScrolls.contains(nodeID); 83 87 } … … 85 89 bool RemoteScrollingCoordinator::isScrollSnapInProgress(ScrollingNodeID nodeID) const 86 90 { 91 if (!nodeID) 92 return false; 87 93 return m_nodesWithActiveScrollSnap.contains(nodeID); 88 94 }
Note:
See TracChangeset
for help on using the changeset viewer.