Changeset 249290 in webkit
- Timestamp:
- Aug 29, 2019, 1:48:02 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
layout/layouttree/LayoutTreeBuilder.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r249289 r249290 1 2019-08-29 Zalan Bujtas <zalan@apple.com> 2 3 [LFC] Inline content logging should have some extra space for better readability 4 https://bugs.webkit.org/show_bug.cgi?id=201236 5 <rdar://problem/54807336> 6 7 Reviewed by Antti Koivisto. 8 9 * layout/layouttree/LayoutTreeBuilder.cpp: 10 (WebCore::Layout::outputInlineRuns): 11 1 12 2019-08-29 Zalan Bujtas <zalan@apple.com> 2 13 -
trunk/Source/WebCore/layout/layouttree/LayoutTreeBuilder.cpp
r249086 r249290 251 251 252 252 unsigned printedCharacters = 0; 253 while (++printedCharacters <= depth * 3)253 while (++printedCharacters <= depth * 2) 254 254 stream << " "; 255 stream << " "; 255 256 256 257 stream << "lines are -> "; … … 261 262 for (auto& inlineRun : inlineRuns) { 262 263 unsigned printedCharacters = 0; 263 while (++printedCharacters <= depth * 3)264 while (++printedCharacters <= depth * 2) 264 265 stream << " "; 266 stream << " "; 265 267 if (inlineRun->textContext()) 266 268 stream << "inline text box";
Note:
See TracChangeset
for help on using the changeset viewer.