Changeset 166739 in webkit
- Timestamp:
- Apr 3, 2014, 1:46:03 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r166736 r166739 1 2014-04-02 Simon Fraser <simon.fraser@apple.com> 2 3 Assertion under RenderLayerCompositor::updateScrollCoordinatedLayer on time.com on iOS 4 https://bugs.webkit.org/show_bug.cgi?id=131150 5 6 Reviewed by Beth Dakin. 7 8 When calling updateScrollCoordinatedLayer() under styleChanged, we haven't done 9 layout yet so our composting layers haven't been hooked together. Don't try 10 to add a zero nodeID to the map in this case. 11 12 * rendering/RenderLayerCompositor.cpp: 13 (WebCore::RenderLayerCompositor::updateScrollCoordinatedLayer): 14 1 15 2014-04-03 David Hyatt <hyatt@apple.com> 2 16 -
trunk/Source/WebCore/rendering/RenderLayerCompositor.cpp
r166634 r166739 3506 3506 3507 3507 nodeID = scrollingCoordinator->attachToStateTree(nodeType, nodeID, parentNodeID); 3508 if (!nodeID) 3509 return; 3510 3508 3511 backing->setViewportConstrainedNodeID(nodeID); 3509 3512 … … 3529 3532 3530 3533 nodeID = scrollingCoordinator->attachToStateTree(isRootLayer ? FrameScrollingNode : OverflowScrollingNode, nodeID, parentNodeID); 3534 if (!nodeID) 3535 return; 3536 3531 3537 backing->setScrollingNodeID(nodeID); 3532 3538 m_scrollingNodeToLayerMap.add(nodeID, &layer);
Note:
See TracChangeset
for help on using the changeset viewer.