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

Unified Diff: Source/core/rendering/RenderTable.cpp

Issue 16677006: Merge 150896 "Dirty the first RootInlineBox, always" (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1500/
Patch Set: Created 7 years, 6 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 | « LayoutTests/svg/dom/altGlyph-dom-expected.txt ('k') | Source/core/rendering/RenderText.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTable.cpp
===================================================================
--- Source/core/rendering/RenderTable.cpp (revision 152061)
+++ Source/core/rendering/RenderTable.cpp (working copy)
@@ -311,7 +311,9 @@
// We should NEVER shrink the table below the min-content logical width, or else the table can't accomodate
// its own content which doesn't match CSS nor what authors expect.
- ASSERT(logicalWidth() >= minPreferredLogicalWidth());
+ // FIXME: When we convert to sub-pixel layout for tables we can remove the int conversion
+ // https://code.google.com/p/chromium/issues/detail?id=241198
+ ASSERT(logicalWidth().toInt() >= minPreferredLogicalWidth().toInt());
}
// This method takes a RenderStyle's logical width, min-width, or max-width length and computes its actual value.
« no previous file with comments | « LayoutTests/svg/dom/altGlyph-dom-expected.txt ('k') | Source/core/rendering/RenderText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698