mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-14 02:46:57 +02:00
26 lines
435 B
HTML
26 lines
435 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../../../expected/css/transforms/flattening-ref.html" />
|
|
<style>
|
|
#holder {
|
|
width: 100px;
|
|
perspective: 1000px;
|
|
}
|
|
#outer {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: blue;
|
|
transform: rotateY(30deg);
|
|
}
|
|
#inner {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: red;
|
|
transform: translateZ(100px);
|
|
}
|
|
</style>
|
|
<div id="holder">
|
|
<div id="outer">
|
|
<div id="inner"></div>
|
|
</div>
|
|
</div>
|