tor-browser

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

overflow-canvas.html (600B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Verifies overflow applies to canvas elements</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow">
      5 <link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
      6 <link rel="match" href="overflow-canvas-ref.html">
      7 <script src="../css-images/support/testHelper.js"></script>
      8 <style>
      9  .default {
     10    width: 25px;
     11    height: 50px;
     12    object-fit: none;
     13    object-position: 0% 0%;
     14    overflow: visible;
     15  }
     16 </style>
     17 <body>
     18 <canvas class=default></canvas>
     19 </body>
     20 <script>
     21  paintCanvases();
     22 </script>