tor-browser

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

iframe-transition.sub.html (842B)


      1 <!DOCTYPE html>
      2 <html class=reftest-wait>
      3 <title>View transitions: iframe</title>
      4 <meta name="timeout" content="long">
      5 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      6 <link rel="author" href="mailto:vmpstr@chromium.org">
      7 <link rel="match" href="iframe-transition-ref.html">
      8 <meta name="assert" content="Ensure that iframe root capture is sized and displayed correctly">
      9 <meta name=fuzzy content="maxDifference=0-200; totalPixels=0-200">
     10 <script src="/common/reftest-wait.js"></script>
     11 <style>
     12 iframe { width: 500px; height: 500px }
     13 </style>
     14 
     15 <script>
     16 failIfNot(document.startViewTransition, "Missing document.startViewTransition");
     17 
     18 addEventListener("message", takeScreenshot);
     19 </script>
     20 
     21 <iframe id=frame src="http://{{domains[www]}}:{{ports[http][0]}}/css/css-view-transitions/support/frame-helper.html"></iframe>