chromium/third_party/blink/web_tests/external/wpt/css/css-view-transitions/navigation/at-rule-opt-in-auto.html

<!DOCTYPE html>
<html class="reftest-wait">
<title>View Transitions: @view-transition opt in for auto</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
<link rel="author" href="mailto:[email protected]">
<link rel="match" href="at-rule-opt-in-auto-ref.html">
<script src="/common/reftest-wait.js"></script>
<style>
@view-transition {
  navigation: auto;
}

html {
  background: blue;
}
</style>
<script>
function runTest() {
  const url = "resources/at-rule-opt-in-auto.html";
  window.location.replace(new URL(url, window.location));
}
onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>
</html>