diff options
author | athenian200 <athenian200@outlook.com> | 2020-09-03 18:55:28 -0500 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-09-08 11:02:57 +0000 |
commit | abaea77ccbc3658186b2027d2721451e8acb34a3 (patch) | |
tree | 912de33bf1a047262c074df22309bdb32ba005dc /layout/forms/nsLegendFrame.cpp | |
parent | 4698b4b3cadd2547cf87a03daebaa23e3bd92cd5 (diff) | |
download | UXP-abaea77ccbc3658186b2027d2721451e8acb34a3.tar UXP-abaea77ccbc3658186b2027d2721451e8acb34a3.tar.gz UXP-abaea77ccbc3658186b2027d2721451e8acb34a3.tar.lz UXP-abaea77ccbc3658186b2027d2721451e8acb34a3.tar.xz UXP-abaea77ccbc3658186b2027d2721451e8acb34a3.zip |
Issue #1641 - Implement CSS flow-root keyword
This is just a clean port of 1322191 and follow-up 1325970. It really seems to add create a new way to access existing code relating to block formatting and floating elements rather than implementing new functionality, and it is mercifully straightforwards.
Diffstat (limited to 'layout/forms/nsLegendFrame.cpp')
-rw-r--r-- | layout/forms/nsLegendFrame.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/layout/forms/nsLegendFrame.cpp b/layout/forms/nsLegendFrame.cpp index 95efc2c87..b985ed8fc 100644 --- a/layout/forms/nsLegendFrame.cpp +++ b/layout/forms/nsLegendFrame.cpp @@ -24,9 +24,7 @@ NS_NewLegendFrame(nsIPresShell* aPresShell, nsStyleContext* aContext) #endif nsIFrame* f = new (aPresShell) nsLegendFrame(aContext); - if (f) { - f->AddStateBits(NS_BLOCK_FLOAT_MGR | NS_BLOCK_MARGIN_ROOT); - } + f->AddStateBits(NS_BLOCK_FORMATTING_CONTEXT_STATE_BITS); return f; } |