Bug 117490

Summary: Remove redundant calls to ceilToFloat in RenderBlock::computeInlinePreferredLogicalWidths
Product: WebKit Reporter: Ryosuke Niwa <rniwa>
Component: New BugsAssignee: Ryosuke Niwa <rniwa>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, eae, esprehn+autocc, glenn, hyatt, kling, koivisto, simon.fraser
Priority: P2 Keywords: BlinkMergeCandidate
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Cleanup kling: review+, kling: commit-queue-

Description Ryosuke Niwa 2013-06-10 22:39:58 PDT
Remove redundant calls to ceilToFloat in RenderBlock::computeInlinePreferredLogicalWidths
Comment 1 Ryosuke Niwa 2013-06-10 22:45:27 PDT
Created attachment 204288 [details]
Cleanup
Comment 2 Andreas Kling 2013-06-11 07:52:02 PDT
Comment on attachment 204288 [details]
Cleanup

View in context: https://bugs.webkit.org/attachment.cgi?id=204288&action=review

Looks harmless. r=me

> Source/WebCore/rendering/RenderBlock.cpp:6197
> +                    LayoutUnit cailedIndent = textIndent.ceilToFloat();

Typo, ceiledIndent.
Comment 3 Emil A Eklund 2013-06-11 08:43:11 PDT
Makes sense.
Comment 4 Ryosuke Niwa 2013-06-11 11:22:38 PDT
Committed r151445: <http://trac.webkit.org/changeset/151445>