@@ -881,8 +881,8 @@ export function bind_resize_observer(dom, type, update) {
881881 type === 'contentRect' || type === 'contentBoxSize'
882882 ? resize_observer_content_box
883883 : type === 'borderBoxSize'
884- ? resize_observer_border_box
885- : resize_observer_device_pixel_content_box ;
884+ ? resize_observer_border_box
885+ : resize_observer_device_pixel_content_box ;
886886 const unsub = observer . observe ( dom , /** @param {any } entry */ ( entry ) => update ( entry [ type ] ) ) ;
887887 render_effect ( ( ) => unsub ) ;
888888}
@@ -1606,8 +1606,8 @@ export function element(anchor_node, tag_fn, render_fn, is_svg = false) {
16061606 ? current_hydration_fragment !== null
16071607 ? /** @type {HTMLElement | SVGElement } */ ( current_hydration_fragment [ 0 ] )
16081608 : is_svg
1609- ? document . createElementNS ( 'http://www.w3.org/2000/svg' , tag )
1610- : document . createElement ( tag )
1609+ ? document . createElementNS ( 'http://www.w3.org/2000/svg' , tag )
1610+ : document . createElement ( tag )
16111611 : null ;
16121612 const prev_element = element ;
16131613 if ( prev_element !== null ) {
@@ -2869,7 +2869,7 @@ export function mount(component, options) {
28692869 PassiveDelegatedEvents . includes ( event_name )
28702870 ? {
28712871 passive : true
2872- }
2872+ }
28732873 : undefined
28742874 ) ;
28752875 // The document listener ensures we catch events that originate from elements that were
@@ -2880,7 +2880,7 @@ export function mount(component, options) {
28802880 PassiveDelegatedEvents . includes ( event_name )
28812881 ? {
28822882 passive : true
2883- }
2883+ }
28842884 : undefined
28852885 ) ;
28862886 }
0 commit comments