testing/web-platform/tests/css/css-images/object-fit-none-svg-002p.html
author Dana Keeler <dkeeler@mozilla.com>
Sat, 12 Jul 2025 15:57:37 +0000 (11 hours ago)
changeset 796342 3a804f83c6b282c3c6b6ed9b67bacbc277bfb300
parent 566465 59b89026a63fa259d650bd6778043c3b504a3a6e
permissions -rw-r--r--
Bug 1976779 - rsclientcerts: make each backend responsible for rate-limiting calls to find_objects r=jschanck Before this patch, `rsclientcerts::manager` would rate-limit calls to `find_objects` to once every 3 seconds because the underlying operation can be time-consuming (in particular, on macOS and Windows, if there are many certificates/keys available). On Android, keys aren't available until the user selects one, which means that if a call to `find_objects` happened before the selection prompt was shown (which is what happens) and the user chose one in less than 3 seconds, the backend wouldn't search again, thus making it seem like no keys were available, which would cause Firefox to not send a client certificate. This patch makes each backend implementation responsible for this rate-limiting, because only they know if it's appropriate to do so (in particular, on Android, `find_objects` doesn't have the same performance concern as on macOS and Windows because rather than searching for certificates and keys, it asks `ClientAuthCertificateManager` for the cached list of certificates and keys that have already been approved for use by the user). Differential Revision: https://phabricator.services.mozilla.com/D257065
<!DOCTYPE html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS Test: 'object-fit: none' on video element, with a SVG image and with various 'object-position' values</title>
    <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
    <link rel="help" href="http://www.w3.org/TR/css3-images/#sizing">
    <link rel="help" href="http://www.w3.org/TR/css3-images/#the-object-fit">
    <link rel="help" href="http://www.w3.org/TR/css3-images/#the-object-position">
    <link rel="match" href="object-fit-none-svg-002-ref.html">
    <style type="text/css">
      video {
        border: 1px dashed gray;
        padding: 1px;
        object-fit: none;
        float: left;
      }

      .bigWide {
        width: 48px;
        height: 32px;
      }
      .bigTall {
        width: 32px;
        height: 48px;
      }
      .small {
        width: 8px;
        height: 8px;
      }

      br { clear: both; }

      .tr { object-position: top right }
      .bl { object-position: bottom left }
      .tl { object-position: top 25% left 25% }
      .br { object-position: bottom 1px right 2px }

      .tc { object-position: top 3px left 50% }
      .cr { object-position: top 50% right 25% }
    </style>
  </head>
  <body>
    <!-- big/wide: -->
    <video poster="support/colors-8x16.svg" class="bigWide tr"></video>
    <video poster="support/colors-8x16.svg" class="bigWide bl"></video>
    <video poster="support/colors-8x16.svg" class="bigWide tl"></video>
    <video poster="support/colors-8x16.svg" class="bigWide br"></video>
    <video poster="support/colors-8x16.svg" class="bigWide tc"></video>
    <video poster="support/colors-8x16.svg" class="bigWide cr"></video>
    <video poster="support/colors-8x16.svg" class="bigWide"></video>
    <br>
    <!-- big/tall: -->
    <video poster="support/colors-8x16.svg" class="bigTall tr"></video>
    <video poster="support/colors-8x16.svg" class="bigTall bl"></video>
    <video poster="support/colors-8x16.svg" class="bigTall tl"></video>
    <video poster="support/colors-8x16.svg" class="bigTall br"></video>
    <video poster="support/colors-8x16.svg" class="bigTall tc"></video>
    <video poster="support/colors-8x16.svg" class="bigTall cr"></video>
    <video poster="support/colors-8x16.svg" class="bigTall"></video>
    <br>
    <!-- small: -->
    <video poster="support/colors-8x16.svg" class="small tr"></video>
    <video poster="support/colors-8x16.svg" class="small bl"></video>
    <video poster="support/colors-8x16.svg" class="small tl"></video>
    <video poster="support/colors-8x16.svg" class="small br"></video>
    <video poster="support/colors-8x16.svg" class="small tc"></video>
    <video poster="support/colors-8x16.svg" class="small cr"></video>
    <video poster="support/colors-8x16.svg" class="small"></video>
    <br>
  </body>
</html>