mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 08:00:45 +00:00
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.
13 lines
328 B
HTML
13 lines
328 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/clip-path.html" />
|
|
<html>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="container" style="clip-path: rect(0 0 0 0)"></div>
|
|
<div style="width: 100px; height: 100px; background-color: green"></div>
|
|
</body>
|
|
</html>
|