1
0
Fork 0
firefox/testing/web-platform/tests/css/css-view-transitions/navigation/at-rule-opt-in-auto-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
502 B
HTML

<!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>