| <!DOCTYPE html> |
| <html class="test-wait"> |
| <title>View transitions: documentElement.remove</title> |
| <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> |
| <link rel="author" href="mailto:[email protected]"> |
| |
| <style> |
| html { |
| display: none; |
| } |
| </style> |
| |
| <script> |
| function runTest() { |
| document.startViewTransition(() => { |
| requestAnimationFrame(() => { |
| const html = document.documentElement; |
| html.remove(); |
| html.classList.remove('test-wait'); |
| }); |
| }); |
| } |
| onload = () => requestAnimationFrame(runTest); |
| </script> |
| </html> |