tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

transform3d-backface-visibility-001.html (817B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Simple Backface-Visibility, rotatex(180deg)</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#propdef-backface-visibility">
      7    <meta name="assert" content='This tests that a very simple case of
      8    backface-visibility causes the element to disappear: rotateX(180deg) is
      9    specified on the same element that has backface-visibility: hidden.'>
     10    <link rel="match" href="transform-lime-square-ref.html">
     11    <style>div { height: 100px; width: 100px }</style>
     12  </head>
     13  <body>
     14    <div style="background:lime">
     15      <div style="background:red;transform:rotatex(180deg);
     16        backface-visibility:hidden">
     17      </div>
     18    </div>
     19  </body>
     20 </html>