LibWeb: Paint inline-level and replaced elements on top of floats

This matches CSS 2.1 appendix E, and fixes an instance of red face
border on ACID2. :^)
This commit is contained in:
Andreas Kling 2022-02-14 16:39:45 +01:00
commit f4625ed9de
Notes: sideshowbarker 2024-07-17 18:48:45 +09:00
2 changed files with 16 additions and 2 deletions

View file

@ -21,6 +21,7 @@ public:
enum class StackingContextPaintPhase {
BackgroundAndBorders,
Floats,
BackgroundAndBordersForInlineLevelAndReplaced,
Foreground,
FocusAndOverlay,
};