chrome-remove-insert-evaluator-crash.html (369B)
1 <!doctype html> 2 <title>Removing and re-inserting a container should crash</title> 3 <link rel="help" href="https://crbug.com/1342750"> 4 <style> 5 #container { container-type: inline-size } 6 </style> 7 <div id="outer"> 8 <div id="container"></div> 9 </div> 10 <script> 11 container.offsetTop; 12 let removed = container; 13 container.remove(); 14 outer.appendChild(removed); 15 </script>