https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b9c3ece3cdced24a92f21a6a571d53f7c9fd0f9d authored by B2G Bumper Bot on 11 October 2014, 17:31:46 UTC
Bumping manifests a=b2g-bump
Tip revision: b9c3ece
rotatex-perspective-3-ref.html
<html>
<head>
  <style type="text/css">
    #container {
      position: relative;
      height: 300px;
      width: 300px;
      margin: 50px 100px;
      border: 2px solid blue;
      
      -moz-perspective: 500px;
  }

  #parent {
      margin: 10px;
      width: 280px;
      height: 280px;
      background-color: #844BCA;
      
      -moz-transform: rotateY(40deg);
  }
    
  </style>
</head>
<body>

  <div id="container">
    <div id="parent">
    </div>
  </div>

</body>
</html>
back to top