mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
Fixes a bug where we would clip `box-shadow` when `overflow: hidden` was set, which is not supposed to happen since `overflow` only affects clipping of an element's content.
10 lines
266 B
HTML
10 lines
266 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/box-shadow-with-overflow-hidden-ref.html" />
|
|
<!DOCTYPE html><style>
|
|
.box {
|
|
background-color: black;
|
|
width: 100px;
|
|
height: 100px;
|
|
box-shadow: 12px 12px 2px 1px red;
|
|
}
|
|
</style><div class="box"></div>
|