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.
11 lines
205 B
HTML
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>
|