Files
servo/tests/wpt/css-tests/css-transforms-1_dev/xhtml1/perspective-origin-001.xht

41 lines
1.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><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.xht" 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>