blob: e1e2ebb4e60a4ab0908d9bb4a961016fa482d88c [file] [log] [blame] [edit]
<!doctype html>
<title>HTML Test: object - crash removing a param after changing its style</title>
<link rel="help" href="https://crbug.com/1195633">
<object type="text/html">
<param id="param"></param>
</object>
<script>
getComputedStyle(param).color;
param.style.color = "red";
param.remove();
</script>