chromium/third_party/blink/web_tests/external/wpt/shadow-dom/imperative-slot-assign-not-slotable-crash.html

<!DOCTYPE html>
<link rel=author href="mailto:[email protected]">
<link rel=help href="https://crbug.com/1240783">

<p>This test passes if it does not crash.</p>

<slot id=slot>
<object id=object>
<script>
onload = () => {
  const nonSlotable = document.createProcessingInstruction(undefined, undefined);
  document.getElementById('slot').assign(nonSlotable);
  document.getElementById('object').appendChild(nonSlotable);
}
</script>