layout/reftests/transform-3d/rotatex-perspective-3-ref.html

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 <html>
     2 <head>
     3   <style type="text/css">
     4     #container {
     5       position: relative;
     6       height: 300px;
     7       width: 300px;
     8       margin: 50px 100px;
     9       border: 2px solid blue;
    11       -moz-perspective: 500px;
    12   }
    14   #parent {
    15       margin: 10px;
    16       width: 280px;
    17       height: 280px;
    18       background-color: #844BCA;
    20       -moz-transform: rotateY(40deg);
    21   }
    23   </style>
    24 </head>
    25 <body>
    27   <div id="container">
    28     <div id="parent">
    29     </div>
    30   </div>
    32 </body>
    33 </html>

mercurial