<!DOCTYPE html>
<title>View transitions: opt in without frame crash</title>
<link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
<link rel="author" href="mailto:[email protected]">
<script>
const htmlString = `
<!doctype html>
<style>
@view-transition { navigation: auto; }
</style>
<div>Hello!</div>`;
const parser = new DOMParser();
const doc = parser.parseFromString(htmlString, "text/html");
</script>