mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html><head><meta charset="utf-8">
|
|
<title>CSS Transforms Test: perspective-origin - 50% top('top' computes to '0%' 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 'top' computes to 0% for the vertical position." name="assert">
|
|
<style>
|
|
div {
|
|
height: 100px;
|
|
position: absolute;
|
|
width: 100px;
|
|
}
|
|
#test {
|
|
perspective: 2px;
|
|
perspective-origin: 50% top;
|
|
}
|
|
#redSquare {
|
|
background-color: red;
|
|
transform: translateZ(0px);
|
|
}
|
|
#ref {
|
|
perspective: 2px;
|
|
perspective-origin: 50% 0%;
|
|
}
|
|
#greenSquare {
|
|
background-color: green;
|
|
height: 50px;
|
|
left: 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> |