blob: bf99b25f76b176520715a245ef3abf01258fdc5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<title>View transitions: iframe</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<link rel="author" href="mailto:vmpstr@chromium.org">
<style>
iframe { width: 500px; height: 500px }
</style>
<iframe srcdoc="
<style>
div {
width: 100px;
height: 100px;
background: green;
}
html { height: 50%; }
</style>
<div></div>
"></iframe>
|