tor-browser

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

transform3d-backface-visibility-003.html (867B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Simple Backface-Visibility, rotatex(180deg) on Table</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 is identical to
      8    transform3d-backface-visibility-001.html, except that display: table is
      9    specified too.  This is motivated by a real-world UA bug:
     10    <https://bugzilla.mozilla.org/show_bug.cgi?id=724750>.'>
     11    <link rel="match" href="transform-lime-square-ref.html">
     12  </head>
     13  <body>
     14    <div style="height:100px;width:100px;background:lime">
     15      <div style="height:100px;width:100px;background:red;
     16        transform:rotatex(180deg);backface-visibility:hidden;display:table">
     17      </div>
     18    </div>
     19  </body>
     20 </html>