Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/crashtests/anonymous-block-merge.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Removing flex item child should not crash</title>
<div style="display:flex;"><div id="inner"></div>text</div>
<script>
var inner = document.getElementById('inner');
inner.parentNode.removeChild(inner);
</script>