blob: be8cc501cf09a01105a8f0c89d8e47b91dd66c01 [file] [log] [blame]
<!DOCTYPE html>
<title>View Transitions: @view-transition opt in for cross-document (ref)</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
<link rel="author" href="mailto:bokan@chromium.org">
<style>
.old {
width: 50vw;
height: 100vh;
position: fixed;
left: 0px;
top: 0px;
background: blue;
}
.new {
width: 50vw;
height: 100vh;
position: fixed;
left: 50vw;
top: 0px;
background: grey;
}
</style>
<div class="old"></div>
<div class="new"></div>