tor-browser

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

object-view-box-writing-mode-canvas.html (704B)


      1 <!-- This is an autogen file. Run support/generate_object_view_box_tests.py to update -->
      2 <!DOCTYPE html>
      3 <html>
      4 <title>CSS object-view-box with vertical writing mode</title>
      5 <link rel="author" href="mailto:khushalsagar@chromium.org">
      6 <link rel="match" href="object-view-box-writing-mode-canvas-ref.html">
      7 <script src="support/testHelper.js"></script>
      8 <link rel="help" href="https://drafts.csswg.org/css-images-4/#the-object-view-box">
      9 
     10 <body>
     11 <style>
     12 html {
     13  writing-mode: vertical-lr;
     14 }
     15 .view_box_subset {
     16  object-view-box: inset(25px 0px 0px 0px);
     17  object-fit: fill;
     18  background-color: black;
     19 }
     20 </style>
     21 <canvas class="view_box_subset"></canvas>
     22 </body>
     23 <script>
     24  populateElements("");
     25 </script>