blob: 01c4d723498b7b4f2d3ca5b37d536377d2fa30d6 [file] [log] [blame]
<!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:vmpstr@chromium.org">
<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>