blob: eca8e4de5adb744ce6b910bcbf7cd7f1fff52317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: perspective property</title>
<link rel="author" title="Andres Ugarte" href="mailto:anduga@gmail.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-2/#perspective-property">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property">
<link rel="match" href="reference/perspective-reftest.html">
<meta name="assert" content="Asserts that points on the z=0 plane are unchanged">
<style type="text/css">
.container {
position: absolute;
width: 150px;
height: 150px;
top: 100px;
left: 100px;
perspective: 3px;
}
.redSquare {
position: absolute;
top: 0px;
left: 0px;
width: 150px;
height: 150px;
background: red;
transform: translateZ(0px);
}
.greenSquare {
position: absolute;
top: 25px;
left: 25px;
width: 100px;
height: 100px;
background: green;
transform: translateZ(1px);
}
</style>
</head>
<body>
<p>The test passes if there is a green square and no red.</p>
<div class="container">
<div class="redSquare"></div>
<div class="greenSquare"></div>
</div>
</body>
</html>
|