Title: [151446] trunk/Source/WebCore
- Revision
- 151446
- Author
- [email protected]
- Date
- 2013-06-11 11:33:36 -0700 (Tue, 11 Jun 2013)
Log Message
Fix typo in r151445
Unreviewed build fix.
* rendering/RenderBlock.cpp:
(WebCore::RenderBlock::computeInlinePreferredLogicalWidths):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (151445 => 151446)
--- trunk/Source/WebCore/ChangeLog 2013-06-11 18:22:28 UTC (rev 151445)
+++ trunk/Source/WebCore/ChangeLog 2013-06-11 18:33:36 UTC (rev 151446)
@@ -1,3 +1,12 @@
+2013-06-11 Robert Hogan <[email protected]>
+
+ Fix typo in r151445
+
+ Unreviewed build fix.
+
+ * rendering/RenderBlock.cpp:
+ (WebCore::RenderBlock::computeInlinePreferredLogicalWidths):
+
2013-06-11 Ryosuke Niwa <[email protected]>
Remove redundant calls to ceilToFloat in RenderBlock::computeInlinePreferredLogicalWidths
Modified: trunk/Source/WebCore/rendering/RenderBlock.cpp (151445 => 151446)
--- trunk/Source/WebCore/rendering/RenderBlock.cpp 2013-06-11 18:22:28 UTC (rev 151445)
+++ trunk/Source/WebCore/rendering/RenderBlock.cpp 2013-06-11 18:33:36 UTC (rev 151446)
@@ -6195,8 +6195,8 @@
// Add in text-indent. This is added in only once.
if (!addedTextIndent && !child->isFloating()) {
LayoutUnit ceiledIndent = textIndent.ceilToFloat();
- childMin += cailedIndent;
- childMax += cailedIndent;
+ childMin += ceiledIndent;
+ childMax += ceiledIndent;
if (childMin < 0)
textIndent = adjustFloatForSubPixelLayout(childMin);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes