mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html><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 "As specified, but with relative lengths converted
|
|
into absolute lengths." In this test, a parent element has a transform of
|
|
10% with a height/width of 400px, and the child has "transform: inherit"
|
|
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.htm" 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> |