Changeset 267666 in webkit
- Timestamp:
- Sep 27, 2020, 9:30:54 AM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
layout/Verification.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r267657 r267666 1 2020-09-27 Zalan Bujtas <zalan@apple.com> 2 3 Unreviewed. Call showLayoutTree only when trees are mismatching. 4 5 * layout/Verification.cpp: 6 (WebCore::Layout::LayoutContext::verifyAndOutputMismatchingLayoutTree): 7 1 8 2020-09-27 Zalan Bujtas <zalan@apple.com> 2 9 -
trunk/Source/WebCore/layout/Verification.cpp
r267657 r267666 335 335 TextStream stream; 336 336 auto& layoutRoot = layoutState.root(); 337 auto mismatchingGeometry = verifyAndOutputSubtree(stream, layoutState, rootRenderer, layoutRoot); 338 if (!mismatchingGeometry) 339 return; 337 340 #if ENABLE(TREE_DEBUGGING) 338 341 showRenderTree(&rootRenderer); 339 342 showLayoutTree(layoutRoot, &layoutState); 340 343 #endif 341 auto mismatchingGeometry = verifyAndOutputSubtree(stream, layoutState, rootRenderer, layoutRoot);342 if (!mismatchingGeometry)343 return;344 344 WTFLogAlways("%s", stream.release().utf8().data()); 345 345 ASSERT_NOT_REACHED();
Note:
See TracChangeset
for help on using the changeset viewer.