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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp

Issue 2625723002: Fix comment regarding position:relative for table cells (Closed)
Patch Set: Created 3 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
index 2f7cbdeb32ac02ca484ca82272bf3f069c9b847e..4485c4037c23e6ac7fffd130c8a1e04d2d35128f 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
@@ -329,9 +329,8 @@ static void adjustStyleForDisplay(ComputedStyle& style,
style.setDisplay(EDisplay::InlineBlock);
// After performing the display mutation, check table rows. We do not honor
- // position: relative table rows or cells. This has been established for
- // position: relative in CSS2.1 (and caused a crash in containingBlock() on
- // some sites).
+ // position: relative table rows. This has been established for position:
+ // relative in CSS2.1 (and caused a crash in containingBlock() on some sites).
if ((style.display() == EDisplay::TableHeaderGroup ||
style.display() == EDisplay::TableRowGroup ||
style.display() == EDisplay::TableFooterGroup ||
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698