diff options
Diffstat (limited to 'testing/web-platform/tests/shadow-dom/imperative-slot-assign-not-slotable-crash.html')
-rw-r--r-- | testing/web-platform/tests/shadow-dom/imperative-slot-assign-not-slotable-crash.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shadow-dom/imperative-slot-assign-not-slotable-crash.html b/testing/web-platform/tests/shadow-dom/imperative-slot-assign-not-slotable-crash.html new file mode 100644 index 0000000000..a493eeaf00 --- /dev/null +++ b/testing/web-platform/tests/shadow-dom/imperative-slot-assign-not-slotable-crash.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<link rel=author href="mailto:jarhar@chromium.org"> +<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> |