https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 6112e2e92084e91286d01a54b519e7740465ab4f authored by Nick Thomas on 16 March 2016, 12:42:37 UTC
bug 1255245: ESR45 generates mar files with the wrong channel ID: Always modify update-settings.ini. r=bhearsum a=sledru
Tip revision: 6112e2e
descendant-1.html
<html>
<head>
  <style>
    #div1 {
      background: green;
      height: 100px;
      width: 100px;
    }
    span {
      background: yellow;
    }
    #div1 div {-moz-transform: translate(20px, 150px);
               -moz-transform-origin: 0% 0%;
    }
  </style>
</head>
<body>
  <div id="div1">
    <div><span>span 1</span></div>
  </div>
  <span>span 2</span>
</body>
</html>
back to top