Files
servo/tests/wpt/css-tests/css-transforms-1_dev/html/perspective-origin-001.htm

41 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html><head><meta charset="utf-8">
<title>CSS Transforms Test: perspective-origin - 0px center('center' computes to '50%' in vertical position)</title>
<link href="http://www.intel.com" rel="author" title="Intel">
<link href="mailto:jieqiongx.cui@intel.com" rel="author" title="Jieqiong Cui">
<link href="http://www.w3.org/TR/css-transforms-1/#propdef-perspective-origin" rel="help" title="11. The 'perspective-origin' Property">
<link href="reference/ref-filled-green-100px-square.htm" rel="match">
<meta content="" name="flags">
<meta content="The 'perspective-origin' property set 'center' computes to 50% for the vertical position." name="assert">
<style>
div {
height: 100px;
position: absolute;
width: 100px;
}
#test {
perspective: 2px;
perspective-origin: 0px center;
}
#redSquare {
background-color: red;
transform: translateZ(0px);
}
#ref {
perspective: 2px;
perspective-origin: 0px 50%;
}
#greenSquare {
background-color: green;
height: 50px;
top: 25px;
transform: translateZ(1px);
width: 50px;
}
</style>
</head><body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="test"><div id="redSquare"></div></div>
<div id="ref"><div id="greenSquare"></div></div>
</body></html>