ladybird/Libraries/LibWebView/PageInfo.h
Andreas Kling dab1fd265d test-web: Dump stacking context tree in layout test output
This will allow us to test (and catch regressions in) stacking context
tree construction and updates, etc.
2025-07-09 14:36:08 +02:00

23 lines
369 B
C++

/*
* Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/EnumBits.h>
namespace WebView {
enum class PageInfoType {
Text = 1 << 0,
LayoutTree = 1 << 2,
PaintTree = 1 << 3,
GCGraph = 1 << 4,
StackingContextTree = 1 << 5,
};
AK_ENUM_BITWISE_OPERATORS(PageInfoType);
}