Make WordPress Core


Ignore:
Timestamp:
09/19/2022 10:51:53 PM (3 years ago)
Author:
davidbaumwald
Message:

Media: Revert WebP generation.

Given Matt's recent post about removing WebP from core and possibly implementing the feature in a future Canonical Plugin, this change reverts changesets [54086], [54094], and [54097]. Additionally, [54210] contained a coding standards follow-up in one of the affected files that is no longer needed.

Reverts [54086], [54094], and [54097].

Props SergeyBiryukov.
See #55443.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/image/editor.php

    r54086 r54226  
    1919
    2020        require_once DIR_TESTDATA . '/../includes/mock-image-editor.php';
    21         add_filter( 'image_editor_output_format', '__return_empty_array' );
    2221
    2322        // This needs to come after the mock image editor class is loaded.
    2423        parent::set_up();
    25     }
    26 
    27     /**
    28      * Tear down the class.
    29      */
    30     public function tear_down() {
    31         remove_filter( 'image_editor_output_format', '__return_empty_array' );
    32         parent::tear_down();
    3324    }
    3425
     
    236227
    237228        // Test with a suffix only.
    238         $this->assertSame( 'canola-100x50-jpg.png', wp_basename( $editor->generate_filename( null, null, 'png' ) ) );
     229        $this->assertSame( 'canola-100x50.png', wp_basename( $editor->generate_filename( null, null, 'png' ) ) );
    239230
    240231        // Combo!
    241         $this->assertSame( trailingslashit( realpath( get_temp_dir() ) ) . 'canola-new-jpg.png', $editor->generate_filename( 'new', realpath( get_temp_dir() ), 'png' ) );
     232        $this->assertSame( trailingslashit( realpath( get_temp_dir() ) ) . 'canola-new.png', $editor->generate_filename( 'new', realpath( get_temp_dir() ), 'png' ) );
    242233
    243234        // Test with a stream destination.
Note: See TracChangeset for help on using the changeset viewer.