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.
This commit is contained in:
Andreas Kling 2025-07-06 14:45:04 +02:00 committed by Andreas Kling
commit dab1fd265d
Notes: github-actions[bot] 2025-07-09 12:38:27 +00:00
776 changed files with 2365 additions and 9 deletions

View file

@ -15,6 +15,7 @@ enum class PageInfoType {
LayoutTree = 1 << 2,
PaintTree = 1 << 3,
GCGraph = 1 << 4,
StackingContextTree = 1 << 5,
};
AK_ENUM_BITWISE_OPERATORS(PageInfoType);