https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2c3b1582720bad63628fcf2dc6722159a8f13d4b authored by Gregor Wagner on 04 April 2016, 10:08:53 UTC
Merge
Tip revision: 2c3b158
compound-1-fail.html
<html>
<head>
  <style type="text/css">
    div.test
    {
    background-color: gold;
    width:200px;
    height:100px;
    border: 1px solid black;
    }
    div
    {
    -moz-transform-origin: top left;
    }
  </style>
</head>
<body>
  <div style="position:relative; left:400px; top:200px;">
    <div style="-moz-transform: skew(15deg);">
      <div style="-moz-transform: rotate(90deg);">
	<div style="-moz-transform: scale(2);">
	  <div style="-moz-transform: translate(100px);">
	    <div class="test">
	    </div>
	  </div>
	</div>
      </div>
    </div>
  </div>
</body>
</html>
back to top