Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-lists/crashtests/chrome-legacy-propagation-remove-body-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>BODY list-item crash inserting extra BODY</title>
<style>
body {
display: list-item;
}
div {
/* Multicol and table display to trigger legacy layout */
display: table-row-group;
column-count: 1;
}
</style>
<body>
<p>Pass if no crash.</p>
<div></div>
</body>
<script>
document.documentElement.offsetTop;
document.documentElement.insertBefore(document.createElement("body"), document.body);
</script>