summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-object-element/object-remove-param-crash.html
blob: e1e2ebb4e60a4ab0908d9bb4a961016fa482d88c (plain)
1
2
3
4
5
6
7
8
9
10
11
<!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>