blob: f6cc3f6245319dcc51f741ffd04b9e5bfdad2aa7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html><head>
<title>CSS Reftest Reference</title>
<link href="mailto:dalcala@adobe.com" rel="author" title="David Alcala">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck"> <!-- 07-15-2013 -->
<style type="text/css">
#green-square {
width: 200px;
height: 200px;
margin-left: 51px;
background-color: green;
transform: perspective(600px) rotateX(45deg);
}
</style>
</head>
<body>
<p>The test passes if you see a green trapezoid and no red.</p>
<div id="green-square"></div>
</body></html>
|