https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8e87d5cf5e2e2d51c9f86e22a25eb2cb91d1d3de authored by Anne van Kesteren on 15 April 2018, 13:08:53 UTC
rename resources
Tip revision: 8e87d5c
transform-origin-010.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Transforms Test: transform-origin - left 0%('left' computes to '0%' 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="flags" content="">
<meta name="assert" content="The 'transform-origin' property set 'left' computes to 0% for the horizontal position.">
<style>
  .div1 {
    height: 150px;
    position: absolute;
    width: 150px;
  }
  .div2 {
    background-color: gray;
  }
  #test {
    background-color: red;
    height: 50px;
    margin: 100px 0px 0px 100px;
    transform: rotate(180deg);
    transform-origin: left 0%;
    width: 50px;
  }
  #ref {
    background-color: green;
    height: 50px;
    margin: 100px 0px 0px 100px;
    transform: rotate(180deg);
    transform-origin: 0% 0%;
    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>
back to top