Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1050)

Unified Diff: Source/core/layout/LayoutBox.h

Issue 1307653004: Add some better documentation to LayoutObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/layout/LayoutObject.h » ('j') | Source/core/layout/LayoutObject.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutBox.h
diff --git a/Source/core/layout/LayoutBox.h b/Source/core/layout/LayoutBox.h
index 2a00d921812cd23eb2aae0a3d5b82a4fc1d588e9..d15741cc22abd0fdbf7cd9fd9539099297a47eea 100644
--- a/Source/core/layout/LayoutBox.h
+++ b/Source/core/layout/LayoutBox.h
@@ -849,9 +849,13 @@ private:
protected:
// The preferred logical width of the element if it were to break its lines at every possible opportunity.
+ // CSS 2.1 calls this width the 'preferred minimum width'.
Julien - ping for review 2015/08/27 18:56:54 Added minimum content width to this that I missed.
+ // See https://drafts.csswg.org/css-sizing-3/#intrinsic for more information.
LayoutUnit m_minPreferredLogicalWidth;
// The preferred logical width of the element if it never breaks any lines at all.
+ // CSS 2.1 calls this width the 'preferred width'.
Julien - ping for review 2015/08/27 18:56:54 Added "maximum cell width" to this that I missed.
+ // See https://drafts.csswg.org/css-sizing-3/#intrinsic for more information.
LayoutUnit m_maxPreferredLogicalWidth;
// Our overflow information.
« no previous file with comments | « no previous file | Source/core/layout/LayoutObject.h » ('j') | Source/core/layout/LayoutObject.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698