blob: 1eefed24b3c0d10b2d073958a6da9963f793f53d (
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: transform-style: preserve-3d is respected on pseudo elements</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<style>
body {
background: pink;
}
div {
width: 200px;
height: 200px;
background: green;
}
</style>
<div id="target"></div>
</html>
|