tor-browser

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

transform-iframe-002.html (747B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Iframe</title>
      5    <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
      6    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-rendering">
      7    <meta name="assert" content="This test ensures that an iframe element can be transformed.">
      8    <link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
      9    <style>
     10      iframe {
     11        height: 50px;
     12        width: 50px;
     13        transform: translate(25px, 25px) scale(2, 2);
     14        border: none;
     15      }
     16    </style>
     17    <p>Test passes if there is a filled green square.</p>
     18    <iframe src="support/transform-iframe-002-contents.html"></iframe>
     19  </body>
     20 </html>