mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
24 lines
473 B
HTML
24 lines
473 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<style>
|
|
.perspective-container {
|
|
perspective: 500px;
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
.rotated {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: blue;
|
|
transform: rotateY(30deg);
|
|
}
|
|
</style>
|
|
<div class="perspective-container">
|
|
<div class="rotated">3D</div>
|
|
</div>
|
|
<script>
|
|
test(() => {
|
|
println(internals.dumpDisplayList());
|
|
});
|
|
</script>
|