mirror of https://github.com/sveltejs/svelte
fix: fire delegated events on target even it was disabled in the meantime (#15319)
They DOM could've been updated already by the time the event bubbling logic is reached, so the target element itself could not be notified of the event because it is marked as disabled. But the target could not have been disabled because it emits the event in the first place, so we emit regardless. No test because not reproducible in jsdom environment. Fixes #15256pull/15304/head
parent
0d5d9ab760
commit
9091e7e930
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
fix: fire delegated events on target even it was disabled in the meantime
|
Loading…
Reference in new issue