Changeset 267674 in webkit
- Timestamp:
- Sep 27, 2020, 1:00:18 PM (6 years ago)
- Location:
- branches/safari-610-branch
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/ios-wk2/TestExpectations (modified) (1 diff)
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit/WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-610-branch/LayoutTests/ChangeLog
r267672 r267674 1 2020-09-27 Alan Coon <alancoon@apple.com> 2 3 Cherry-pick r267092. rdar://problem/69594199 4 5 REGRESSION (r267002): ASSERTION FAILED:[ iOS wk2 Debug ] !HashTranslator::equal(KeyTraits::emptyValue(), key) on compositing/ios/overflow-scroll-update-overlap.html 6 https://bugs.webkit.org/show_bug.cgi?id=216520 7 <rdar://problem/68894931> 8 9 Reviewed by Tim Horton. 10 11 Source/WebKit: 12 13 Avoid hash lookups with zero nodeIDs. 14 15 * WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm: 16 (WebKit::RemoteScrollingCoordinator::isRubberBandInProgress const): 17 (WebKit::RemoteScrollingCoordinator::isUserScrollInProgress const): 18 (WebKit::RemoteScrollingCoordinator::isScrollSnapInProgress const): 19 20 LayoutTests: 21 22 * platform/ios-wk2/TestExpectations: 23 24 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267092 268f45cc-cd09-0410-ab3c-d52691b4dbfc 25 26 2020-09-15 Simon Fraser <simon.fraser@apple.com> 27 28 REGRESSION (r267002): ASSERTION FAILED:[ iOS wk2 Debug ] !HashTranslator::equal(KeyTraits::emptyValue(), key) on compositing/ios/overflow-scroll-update-overlap.html 29 https://bugs.webkit.org/show_bug.cgi?id=216520 30 <rdar://problem/68894931> 31 32 Reviewed by Tim Horton. 33 34 * platform/ios-wk2/TestExpectations: 35 1 36 2020-09-27 Alan Coon <alancoon@apple.com> 2 37 -
branches/safari-610-branch/LayoutTests/platform/ios-wk2/TestExpectations
r267475 r267674 1874 1874 #rdar://69407691 REGRESSION: [ iOS wk2 ] http/wpt/cache-storage/quota-third-party.https.html is a flaky failure 1875 1875 http/wpt/cache-storage/quota-third-party.https.html [ Pass Failure ] 1876 1877 webkit.org/b/186045 imported/w3c/web-platform-tests/css/css-ui/text-overflow-017.html [ Skip ] 1878 webkit.org/b/186045 imported/w3c/web-platform-tests/css/css-values/vh_not_refreshing_on_chrome.html [ Skip ] -
branches/safari-610-branch/Source/WebKit/ChangeLog
r267673 r267674 1 2020-09-27 Alan Coon <alancoon@apple.com> 2 3 Cherry-pick r267092. rdar://problem/69594199 4 5 REGRESSION (r267002): ASSERTION FAILED:[ iOS wk2 Debug ] !HashTranslator::equal(KeyTraits::emptyValue(), key) on compositing/ios/overflow-scroll-update-overlap.html 6 https://bugs.webkit.org/show_bug.cgi?id=216520 7 <rdar://problem/68894931> 8 9 Reviewed by Tim Horton. 10 11 Source/WebKit: 12 13 Avoid hash lookups with zero nodeIDs. 14 15 * WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm: 16 (WebKit::RemoteScrollingCoordinator::isRubberBandInProgress const): 17 (WebKit::RemoteScrollingCoordinator::isUserScrollInProgress const): 18 (WebKit::RemoteScrollingCoordinator::isScrollSnapInProgress const): 19 20 LayoutTests: 21 22 * platform/ios-wk2/TestExpectations: 23 24 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267092 268f45cc-cd09-0410-ab3c-d52691b4dbfc 25 26 2020-09-15 Simon Fraser <simon.fraser@apple.com> 27 28 REGRESSION (r267002): ASSERTION FAILED:[ iOS wk2 Debug ] !HashTranslator::equal(KeyTraits::emptyValue(), key) on compositing/ios/overflow-scroll-update-overlap.html 29 https://bugs.webkit.org/show_bug.cgi?id=216520 30 <rdar://problem/68894931> 31 32 Reviewed by Tim Horton. 33 34 Avoid hash lookups with zero nodeIDs. 35 36 * WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm: 37 (WebKit::RemoteScrollingCoordinator::isRubberBandInProgress const): 38 (WebKit::RemoteScrollingCoordinator::isUserScrollInProgress const): 39 (WebKit::RemoteScrollingCoordinator::isScrollSnapInProgress const): 40 1 41 2020-09-27 Alan Coon <alancoon@apple.com> 2 42 -
branches/safari-610-branch/Source/WebKit/WebProcess/WebPage/RemoteLayerTree/RemoteScrollingCoordinator.mm
r267673 r267674 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.