blob: 171f999554057f72011e14db538437c81dbfd1a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<title>View transitions: new element is modified while offscren and brought onscreen using pseudo (ref)</title>
<link rel="help" href="https://github.com/WICG/view-transitions">
<link rel="author" href="mailto:khushalsagar@chromium.org">
<style>
#target {
width: 100px;
height: 100px;
view-transition-name: target;
position: fixed;
background: blue;
left: 0;
top: 0;
}
</style>
<div id="target" class="target">
|