servo/tests/wpt/css-tests/css-transforms-1_dev/html/perspective-translateZ-0.htm

45 lines
No EOL
1.4 KiB
HTML

<!DOCTYPE html>
<html><head>
<title>CSS Transforms Test: perspective property</title>
<link href="mailto:anduga@gmail.com" rel="author" title="Andres Ugarte">
<link href="http://www.w3.org/TR/css-transforms-1/#perspective-property" rel="help">
<link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help">
<link href="reference/perspective-reftest.htm" rel="match">
<meta content="Asserts that points on the z=0 plane are unchanged" name="assert">
<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>