summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/transform-origin-011.html
blob: a8056b1c13da65298fc185092a5ffdc8f58d75e5 (plain)
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
38
39
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Transforms Test: transform-origin - right 100%('right' computes to '100%' in horizontal position)</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="author" title="Jieqiong Cui" href="mailto:jieqiongx.cui@intel.com">
<link rel="help" title="8. The 'transform-origin' Property" href="http://www.w3.org/TR/css-transforms-1/#transform-origin-property">
<link rel="match" href="transform-origin-007-ref.html">
<meta name="assert" content="The 'transform-origin' property set 'right' computes to 100% for the horizontal position.">
<style>
  .div1 {
    height: 150px;
    position: absolute;
    width: 150px;
  }
  .div2 {
    background-color: gray;
  }
  #test {
    background-color: red;
    height: 50px;
    margin: 0px 100px 100px 0px;
    transform: rotate(180deg);
    transform-origin: right 100%;
    width: 50px;
  }
  #ref {
    background-color: green;
    height: 50px;
    margin: 0px 100px 100px 0px;
    transform: rotate(180deg);
    transform-origin: 100% 100%;
    width: 50px;
  }
</style>
<body>
  <p>Test passes if there is a filled green square in the <strong>center</strong> of the gray square and no red.</p>
  <div class="div1 div2"><div id="test"></div></div>
  <div class="div1"><div id="ref"></div></div>
</body>