Files
servo/tests/wpt/css-tests/css-transforms-1_dev/xhtml1print/transform-inherit-002.xht

37 lines
1.6 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>
<title>CSS Test (Transforms): 'inherit' and percentages</title>
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor" />
<link href="http://www.apple.com" rel="reviewer" title="Apple Inc." />
<link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help" />
<meta content="The 'transform' property's
computed value (which is what's inherited if 'inherit' is
specified) is defined as &quot;As specified, but with relative lengths converted
into absolute lengths.&quot; In this test, a parent element has a transform of
10% with a height/width of 400px, and the child has &quot;transform: inherit&quot;
and a height/width of 100px. Since percentages are not relative lengths
and are inherited as specified, the parent should be translated by 40px and
then the child by only 10px, for a total of 50px. An implementation that
incorrectly converted the parent's 10% transform into 40px before
inheritance would translate the child by a further 40px, for a total of
80px." name="assert" />
<link href="reference/transform-inherit-ref.xht" rel="match" />
<style>
body {
height: 400px;
width: 400px;
transform: translate(10%, 10%);
}
div {
height: 100px;
width: 100px;
transform: inherit;
background: blue;
}
</style>
</head>
<body>
<div></div>
</body></html>