ladybird/Tests/LibWeb/Ref/expected/clip-path.html
Aliaksandr Kalenik 39fff3cf8a LibWeb: Don't early return when masking area of StackingContext is empty
An early return was occurring between the emission of
PushStackingContext and PopStackingContext, resulting in a
PushStackingContext without a corresponding PopStackingContext in the
display list, which caused broken painting.

Fixes black screen on Discord login page.
2025-06-06 00:52:19 +02:00

11 lines
205 B
HTML

<!DOCTYPE html>
<html>
<style>
* {
margin: 0;
}
</style>
<body>
<div style="width: 100px; height: 100px; background-color: green"></div>
</body>
</html>