tor-browser

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

at-rule-opt-in-none-in-old.html (672B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <title>View Transitions: @view-transition opt out in new document.</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
      5 <link rel="author" href="mailto:bokan@chromium.org">
      6 <link rel="match" href="at-rule-opt-in-none-ref.html">
      7 <script src="/common/reftest-wait.js"></script>
      8 <style>
      9 @view-transition {
     10  navigation: none;
     11 }
     12 html {
     13  background: blue;
     14 }
     15 </style>
     16 <script>
     17 function runTest() {
     18  const url = "resources/at-rule-opt-in-auto.html";
     19  window.location.replace(new URL(url, window.location));
     20 }
     21 onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
     22 </script>
     23 </html>