tor-browser

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

opt-in-without-frame-crash.html (428B)


      1 <!DOCTYPE html>
      2 <title>View transitions: opt in without frame crash</title>
      3 <link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
      4 <link rel="author" href="mailto:vmpstr@chromium.org">
      5 
      6 <script>
      7 const htmlString = `
      8 <!doctype html>
      9 <style>
     10 @view-transition { navigation: auto; }
     11 </style>
     12 <div>Hello!</div>`;
     13 
     14 const parser = new DOMParser();
     15 const doc = parser.parseFromString(htmlString, "text/html");
     16 </script>