tor-browser

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

translate-in-svg-ref.html (533B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Transforms Test: the CSS translate property applied to an SVG element</title>
      5    <link rel="author" title="Antoine Quint" href="mailto:graouts@apple.com">
      6    <meta name="flags" content="svg">
      7    <style type="text/css">
      8    svg {
      9        width: 400px;
     10        height: 400px;
     11    }
     12    </style>
     13 </head>
     14 <body>
     15    <p>The test passes if there is a green rectangle and no red.</p>
     16    <svg>
     17        <rect x="100" y="100" width="100" height="100" fill="green" />
     18    </svg>
     19 </body>
     20 </html>