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

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: Fixed compilation after moving some boolean fields. 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') | no next file with comments »
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..348d5eeca8b3971bf21004e977813c12a6fc2e98 100644
--- a/Source/core/layout/LayoutBox.h
+++ b/Source/core/layout/LayoutBox.h
@@ -848,10 +848,15 @@ private:
LayoutRectOutsets m_marginBoxOutsets;
protected:
- // The preferred logical width of the element if it were to break its lines at every possible opportunity.
+ // 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" and
+ // "minimum content width".
+ // 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" and "maximum cell width".
+ // 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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698