https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c342c1ccba3e21cadb933bc2c648b37af18c26c8 authored by Mustaq Ahmed on 06 April 2018, 14:14:32 UTC
Make BlueTooth/USB requestDevice non-consuming.
Tip revision: c342c1c
transform-background-003.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Test (Transforms): Transform of Background Image (flip)</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property">
    <link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com"> <!-- 2012-04-17 -->
    <meta name="assert" content="Background images fall within the element's
    border box, so they need to be transformed along with it.">
    <meta name="flags" content="svg">
    <link rel="match" href="transform-background-ref-1.html">
    <style>
      div {
        width: 200px;
        height: 100px;
        background: url(support/transform-triangle-down.svg);
        transform: scale(-1);
      }
    </style>
  </head>
  <body>
    <div></div>
  </body>
</html>
back to top