swissspidy / media-experiments

WordPress media experiments
GNU General Public License v2.0
72 stars 1 forks source link

Expand e2e test coverage #248

Closed swissspidy closed 3 days ago

swissspidy commented 8 months ago

Images

Videos

Audio

PDFs

Media Recording

Related:

Cross-origin isolation

Upload Requests

swissspidy commented 7 months ago

Thumbnails: add a few custom image sizes, verify all are generated and client & server sizes are more or less matching

add_action(
    'init',
    static function () {
        add_image_size( 'bottom-right', 220, 220, array( 'right', 'bottom' ) );
        add_image_size( 'custom-size', 100, 100, array( 'left', 'top' ) );
        add_image_size( 'ninek-height', 400, 9999 );
        add_image_size( 'ninek-width', 9999, 600 );
    }
);