https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 63254fa16f70a245e6d33bfd4bcc94018c1b300b authored by ffxbld on 14 February 2017, 01:04:26 UTC
Added FENNEC_51_0_4_RELEASE FENNEC_51_0_4_BUILD1 tag(s) for changeset a622e89121a7. DONTBUILD CLOSED TREE a=release
Tip revision: 63254fa
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