[wp-trac] [WordPress Trac] #64740: credentialless iframe incompatible with some browsers and cross-origin policies
WordPress Trac
noreply at wordpress.org
Thu Feb 26 18:53:46 UTC 2026
#64740: credentialless iframe incompatible with some browsers and cross-origin
policies
--------------------------+---------------------
Reporter: amykamala | Owner: (none)
Type: defect (bug) | Status: new
Priority: normal | Milestone: 7.0
Component: Editor | Version:
Severity: normal | Resolution:
Keywords: | Focuses:
--------------------------+---------------------
Comment (by westonruter):
This is a workaround that has worked:
{{{#!php
<?php
add_filter( 'wp_client_side_media_processing_enabled', function( $enabled
) {
if ( str_contains( $_SERVER['HTTP_USER_AGENT'] ?? '', 'Firefox' ) ) {
$enabled = false;
}
return $enabled;
} );
}}}
It seems the feature should be disabled in Firefox by default?
--
Ticket URL: <https://core.trac.wordpress.org/ticket/64740#comment:6>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list