Changeset 245242 in webkit
- Timestamp:
- May 13, 2019, 11:13:40 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/scrolling/ios/event-region-scale-transform-shared-expected.txt (added)
-
LayoutTests/fast/scrolling/ios/event-region-scale-transform-shared.html (added)
-
LayoutTests/fast/scrolling/ios/event-region-translate-transform-shared-expected.txt (added)
-
LayoutTests/fast/scrolling/ios/event-region-translate-transform-shared.html (added)
-
LayoutTests/platform/ios-wk2/TestExpectations (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/rendering/RenderLayerBacking.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r245238 r245242 1 2019-05-13 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r245208): compositing/shared-backing/sharing-bounds-non-clipping-shared-layer.html asserts 4 https://bugs.webkit.org/show_bug.cgi?id=197818 5 <rdar://problem/50705762> 6 7 Reviewed by Simon Fraser. 8 9 * fast/scrolling/ios/event-region-scale-transform-shared-expected.txt: Added. 10 * fast/scrolling/ios/event-region-scale-transform-shared.html: Added. 11 * fast/scrolling/ios/event-region-translate-transform-shared-expected.txt: Added. 12 * fast/scrolling/ios/event-region-translate-transform-shared.html: Added. 13 * platform/ios-wk2/TestExpectations: 14 1 15 2019-05-13 Wenson Hsieh <wenson_hsieh@apple.com> 2 16 -
trunk/LayoutTests/platform/ios-wk2/TestExpectations
r245221 r245242 1316 1316 webkit.org/b/196013 fast/scrolling/rubber-band-shows-background.html [ ImageOnlyFailure ] 1317 1317 1318 webkit.org/b/197818 compositing/shared-backing/sharing-bounds-non-clipping-shared-layer.html [ Skip ]1319 1320 1318 webkit.org/b/196269 http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js-with-link-fragment-from-prevalent-resource.html [ Pass Timeout ] 1321 1319 webkit.org/b/196269 http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js-with-link-query-and-fragment-from-prevalent-resource.html [ Pass Timeout ] -
trunk/Source/WebCore/ChangeLog
r245238 r245242 1 2019-05-13 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r245208): compositing/shared-backing/sharing-bounds-non-clipping-shared-layer.html asserts 4 https://bugs.webkit.org/show_bug.cgi?id=197818 5 <rdar://problem/50705762> 6 7 Reviewed by Simon Fraser. 8 9 Tests: fast/scrolling/ios/event-region-scale-transform-shared.html 10 fast/scrolling/ios/event-region-translate-transform-shared.html 11 12 This fixes the assert. However the added tests demonstrate that transform is not taken into account 13 when computing the event region, https://bugs.webkit.org/show_bug.cgi?id=197836. 14 15 * rendering/RenderLayerBacking.cpp: 16 (WebCore::RenderLayerBacking::updateEventRegion): 17 1 18 2019-05-13 Wenson Hsieh <wenson_hsieh@apple.com> 2 19 -
trunk/Source/WebCore/rendering/RenderLayerBacking.cpp
r245220 r245242 1490 1490 m_owningLayer.paintLayerContents(nullContext, paintingInfo, paintFlags); 1491 1491 1492 for (auto& layer WeakPtr: m_backingSharingLayers)1493 layer WeakPtr->paintLayerContents(nullContext, paintingInfo, paintFlags);1492 for (auto& layer : m_backingSharingLayers) 1493 layer->paintLayerWithEffects(nullContext, paintingInfo, paintFlags); 1494 1494 1495 1495 auto contentOffset = roundedIntSize(contentOffsetInCompositingLayer());
Note:
See TracChangeset
for help on using the changeset viewer.