In Svelte, when you add event modifiers like preventDefault or stopPropagation to an event handler, Svelte first applies these modifiers before running your handler function. preventDefault stops the browser's default action, like following a link or submitting a form. stopPropagation stops the event from bubbling up to parent elements, so no other handlers on ancestors run. The execution table shows the event triggered, modifiers checked and applied, and then the handler runs. Variables track that defaultPrevented and propagationStopped flags change accordingly. This helps you control exactly how events behave in your app.