mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
22 lines
378 B
HTML
22 lines
378 B
HTML
<!DOCTYPE html>
|
|
<title>View transitions: iframe</title>
|
|
<link rel="help" href="https://github.com/WICG/view-transitions">
|
|
<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>
|
|
|
|
|