mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
18 lines
373 B
HTML
18 lines
373 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<style>
|
|
.clipped {
|
|
position: absolute;
|
|
clip: rect(10px, 100px, 80px, 20px);
|
|
width: 150px;
|
|
height: 150px;
|
|
background: purple;
|
|
}
|
|
</style>
|
|
<div class="clipped">CSS Clip Property</div>
|
|
<script>
|
|
test(() => {
|
|
println(internals.dumpDisplayList());
|
|
});
|
|
</script>
|