blob: 67476122859cd718e900e624b011984550517a6c (
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
|
<!DOCTYPE html>
<html>
<head>
<title>View transitions: Transition from an empty iframe (ref)</title>
<link rel="help" href="https://github.com/WICG/view-transitions">
<link rel="author" href="mailto:bokan@chromium.org">
<style>
iframe {
position: absolute;
left: 25px;
top: 25px;
width: 50vw;
height: 50vh;
}
div {
background-color: skyblue;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<iframe src="support/transition-in-empty-iframe-child.html?ref">
</iframe>
<div></div>
</body>
</html>
|