mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
70 lines
1.5 KiB
HTML
70 lines
1.5 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: rotateY with perspective produces a trapezoid</title>
|
|
<link rel="author" title="Apple Inc." href="http://www.apple.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#3d-transform-rendering">
|
|
<link rel="match" href="reference/transform-3d-rotateY-stair-above-ref-001.htm">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="A rotateY transform with perspective should result in a trapezoid.">
|
|
<style type="text/css">
|
|
div {
|
|
height: 150px;
|
|
width: 150px;
|
|
}
|
|
.background {
|
|
background-color: green;
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|
|
.container {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 0;
|
|
perspective: 500px;
|
|
}
|
|
.transformed {
|
|
background-color: green;
|
|
transform: rotateY(50deg);
|
|
}
|
|
.stair {
|
|
background-color: red;
|
|
position: absolute;
|
|
}
|
|
#one {
|
|
width: 32px;
|
|
height: 158px;
|
|
top: 16px;
|
|
left: 21px;
|
|
}
|
|
#two {
|
|
width: 33px;
|
|
height: 146px;
|
|
top: 22px;
|
|
left: 53px;
|
|
}
|
|
#three {
|
|
width: 33px;
|
|
height: 134px;
|
|
top: 28px;
|
|
left: 85px;
|
|
}
|
|
.stairs {
|
|
height: 180px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="background">
|
|
<div class="stairs">
|
|
<div id="one" class="stair"></div>
|
|
<div id="two" class="stair"></div>
|
|
<div id="three" class="stair"></div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="transformed"></div>
|
|
</div>
|
|
</div>
|
|
<p>You should see a green box. There should be no red.</p>
|
|
</body>
|
|
</html> |