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

Unified Diff: Source/core/layout/LayoutTableSection.cpp

Issue 1156143002: *** NOT FOR LANDING *** Text nodes should only inherit inheritable properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Some tests need to be rebaselined. Text nodes can no longer have z-index. Created 5 years, 7 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
Index: Source/core/layout/LayoutTableSection.cpp
diff --git a/Source/core/layout/LayoutTableSection.cpp b/Source/core/layout/LayoutTableSection.cpp
index 34c709e8ef2d19ebda472fe4f9cfa77750ce14db..3a1e4210db4b0e5236468d7d51ccc3520fbe89db 100644
--- a/Source/core/layout/LayoutTableSection.cpp
+++ b/Source/core/layout/LayoutTableSection.cpp
@@ -997,7 +997,7 @@ void LayoutTableSection::layoutRows()
|| (!table()->style()->logicalHeight().isAuto() && rHeight != cell->logicalHeight());
for (LayoutObject* child = cell->firstChild(); child; child = child->nextSibling()) {
- if (!child->isText() && child->style()->logicalHeight().hasPercent()
+ if (child->style()->logicalHeight().hasPercent()
&& (flexAllChildren || shouldFlexCellChild(child))
&& (!child->isTable() || toLayoutTable(child)->hasSections())) {
cellChildrenFlex = true;

Powered by Google App Engine
This is Rietveld 408576698