summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/crashtests/delete-from-after-empty-table-header-grouped-element.html
blob: e6ad4fa9e36c8d6b70d08294d772ba32e3d84d40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html>
<head>
<meta char="utf-8">
<script>
addEventListener("load", () => {
  document.documentElement.contentEditable = true;
  getSelection().collapse(document.querySelector("svg"), document.querySelector("svg").childNodes.length);
  document.execCommand("delete");
});
</script>
<body>
<svg>
  <a display="table-header-group">
  </a>
  </svg></body></html>