blob: 269a6a2b9a8e85629048597f8c7a0148de8e9698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<title>View transitions: fragmented elements skipped</title>
<link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
<link rel="author" href="mailto:vmpstr@chromium.org">
<style>
#spacer {
width: 100px;
height: 950px;
background: lightgreen;
}
#container {
width: 500px;
height: 500px;
columns: 2;
}
#target {
width: 200px;
height: 200px;
background: green;
}
#unrelated {
width: 100px;
height: 100px;
background: lightblue;
}
</style>
<div id=container>
<div id=spacer></div>
<div id=target></div>
</div>
<div id=unrelated></div>
|