https://github.com/mozilla/gecko-dev
Raw File
Tip revision: bb844381d6e94a8272c6349136d6dc300b3bf8bc authored by seabld on 22 May 2012, 15:55:51 UTC
Added tag SEAMONKEY_2_10b2_RELEASE for changeset FIREFOX_13_0b4_BUILD1. CLOSED TREE a=release
Tip revision: bb84438
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