1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:17:35 +00:00

LibWeb: Inherit TableFormattingContext from FC instead of BFC

This commit is contained in:
Aliaksandr Kalenik 2022-12-04 21:57:21 +03:00 committed by Andreas Kling
parent fae0b96fe4
commit ca123350cc
2 changed files with 8 additions and 8 deletions

View file

@ -7,11 +7,11 @@
#pragma once
#include <AK/Forward.h>
#include <LibWeb/Layout/BlockFormattingContext.h>
#include <LibWeb/Layout/FormattingContext.h>
namespace Web::Layout {
class TableFormattingContext final : public BlockFormattingContext {
class TableFormattingContext final : public FormattingContext {
public:
explicit TableFormattingContext(LayoutState&, BlockContainer const&, FormattingContext* parent);
~TableFormattingContext();