Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/ranges/Range-compareBoundaryPoints-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Range.compareBoundaryPoints() crash test</title>
<link rel=help href="crbug.com/410996563">
<table id="table">
<thead>
<tr id="row"></tr>
<script>
const selection = document.getSelection();
const range = new Range();
const cell = row.insertCell();
range.setEndBefore(cell);
selection.addRange(range);
selection.removeRange(range);
table.tHead = null;
range.compareBoundaryPoints(Range.START_TO_END, range);
</script>