Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-object-element/object-remove-param-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>HTML Test: object - crash removing a param after changing its style</title>
<object type="text/html">
<param id="param"></param>
</object>
<script>
getComputedStyle(param).color;
param.style.color = "red";
param.remove();
</script>