https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 43e1e3322ba87b63ba5ed84fbea6ec88c962b36a authored by ffxbld on 27 December 2012, 15:32:26 UTC
Added FENNEC_18_0b6_RELEASE FENNEC_18_0b6_BUILD1 tag(s) for changeset ed2b1f04fed0. DONTBUILD CLOSED TREE a=release
Tip revision: 43e1e33
preserve3d_sorting_hit_testing_iframe.html
<!DOCTYPE HTML>
<title>preserve-3d hit testing</title>
<style>
  #stage {
  }

  #parent {
    -moz-transform-style: preserve-3d;
  }

  #big {
    width: 1000px;
    height: 1000px;
    background-color: #995C7F;
    -moz-transform: rotatey(45deg);
  }

  #small {
    width: 100px;
    height: 100px;
    background-color: #835A99;
    -moz-transform: translate3d(600px, 200px, 0px);
  }

</style>
<body>
  <div id="stage">
    <div id="parent">
      <div id="small"></div>
      <div id="big"></div>
    </div>
  </div>
back to top