1
0
Fork 0
firefox/testing/web-platform/tests/css/css-transforms/3d-scene-with-iframe-001-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
425 B
HTML

<!DOCTYPE html>
<meta charset="UTF-8">
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<style>
#container {
perspective: 400px;
perspective-origin: 0 0;
}
#ref {
background-color: green;
width: 150px;
height: 100px;
transform: translateZ(200px);
}
</style>
<div id="container">
<div id="ref"></div>
</div>