Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-ruby/ruby-body-element-crash.html - WPT Dashboard Interop Dashboard
<script>
document.addEventListener("DOMContentLoaded", () => {
document.body.getBoundingClientRect();
document.body.parentNode.removeChild(document.body)
document.body.getBoundingClientRect();
})
</script>
<style>
body {
display: ruby-text;
overflow: scroll;
}
</style>
<body>