mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
20 lines
407 B
HTML
20 lines
407 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/overlapping-inset-shape.html" />
|
|
<style>
|
|
.outer {
|
|
width: 130px;
|
|
height: 80px;
|
|
display: inline-block;
|
|
background-color: grey;
|
|
}
|
|
|
|
.inner {
|
|
height: 100%;
|
|
background-color: black;
|
|
clip-path: inset(10px 100% 100% 10px);
|
|
}
|
|
</style>
|
|
<div class="outer">
|
|
<div class="inner"></div>
|
|
</div>
|