| <!DOCTYPE html> | |
| <html> | |
| <title>View transitions: exit transition with layout objects that don't have a node (ref)</title> | |
| <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> | |
| <link rel="author" href="mailto:khushalsagar@chromium.org"> | |
| <style> | |
| :root { | |
| scrollbar-width: none; | |
| } | |
| body { | |
| width: 100vw; | |
| height: 100vh; | |
| background: pink; | |
| } | |
| #target { | |
| width: 100px; | |
| height: 100px; | |
| background: blue; | |
| } | |
| </style> | |
| <div id="target"></div> |