object-remove-param-crash.html (314B)
1 <!doctype html> 2 <title>HTML Test: object - crash removing a param after changing its style</title> 3 <link rel="help" href="https://crbug.com/1195633"> 4 <object type="text/html"> 5 <param id="param"></param> 6 </object> 7 <script> 8 getComputedStyle(param).color; 9 param.style.color = "red"; 10 param.remove(); 11 </script>