Title: [121602] trunk/Source/WebCore
Revision
121602
Author
[email protected]
Date
2012-06-29 16:49:22 -0700 (Fri, 29 Jun 2012)

Log Message

Add FIXMEs for vertical writing mode and override sizes.
* rendering/RenderBox.cpp:
(WebCore::RenderBox::overrideLogicalContentWidth):
(WebCore::RenderBox::overrideLogicalContentHeight):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121601 => 121602)


--- trunk/Source/WebCore/ChangeLog	2012-06-29 23:45:38 UTC (rev 121601)
+++ trunk/Source/WebCore/ChangeLog	2012-06-29 23:49:22 UTC (rev 121602)
@@ -1,3 +1,10 @@
+2012-06-29  Ojan Vafai  <[email protected]>
+
+        Add FIXMEs for vertical writing mode and override sizes.
+        * rendering/RenderBox.cpp:
+        (WebCore::RenderBox::overrideLogicalContentWidth):
+        (WebCore::RenderBox::overrideLogicalContentHeight):
+
 2012-06-29  James Robinson  <[email protected]>
 
         [chromium] Use CCThread::Task in compositor's RateLimiter instead of Timer

Modified: trunk/Source/WebCore/rendering/RenderBox.cpp (121601 => 121602)


--- trunk/Source/WebCore/rendering/RenderBox.cpp	2012-06-29 23:45:38 UTC (rev 121601)
+++ trunk/Source/WebCore/rendering/RenderBox.cpp	2012-06-29 23:49:22 UTC (rev 121602)
@@ -702,11 +702,13 @@
 
 LayoutUnit RenderBox::overrideLogicalContentWidth() const
 {
+    // FIXME: This should probably be returning contentLogicalWidth instead of contentWidth.
     return hasOverrideWidth() ? gOverrideWidthMap->get(this) : contentWidth();
 }
 
 LayoutUnit RenderBox::overrideLogicalContentHeight() const
 {
+    // FIXME: This should probably be returning contentLogicalHeight instead of contentHeight.
     return hasOverrideHeight() ? gOverrideHeightMap->get(this) : contentHeight();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to