123456789101112131415161718192021 |
- /*
- * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibWeb/Layout/FormattingContext.h>
- namespace Web::Layout {
- class FlexFormattingContext final : public FormattingContext {
- public:
- FlexFormattingContext(Box& containing_block, FormattingContext* parent);
- ~FlexFormattingContext();
- virtual void run(Box&, LayoutMode) override;
- };
- }
|