https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b7e27340b23828cb743b5c51f4ecbd17a7e97f66 authored by Vincent Liu on 24 May 2013, 02:38:31 UTC
Bug 864588 - [B2G] [Leo] [Internet Sharing] USB tethering turns off almost immediately after being turned on. r=vchang, a=leo+
Tip revision: b7e2734
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