aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-transforms-1_dev/html/transform-inherit-002.htm
blob: 51dc3431fa61afbe6ed0e919825db6b776c74a89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!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 &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.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>