Changeset 58050 for branches/6.5
- Timestamp:
- 04/26/2024 03:25:54 PM (5 months ago)
- Location:
- branches/6.5
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/6.5
-
branches/6.5/src/wp-includes/class-avif-info.php
r57524 r58050 176 176 continue; 177 177 } 178 $status = get_item_features( $tile->tile_item_id, $tile_depth + 1 );178 $status = $this->get_item_features( $tile->tile_item_id, $tile_depth + 1 ); 179 179 if ( $status != NOT_FOUND ) { 180 180 return $status; -
branches/6.5/tests/phpunit/tests/functions.php
r57737 r58050 1523 1523 IMAGETYPE_AVIF, 1524 1524 'width="128" height="128"', 1525 'mime' => 'image/avif', 1526 ), 1527 ), 1528 // Grid AVIF. 1529 array( 1530 DIR_TESTDATA . '/images/avif-alpha-grid2x1.avif', 1531 array( 1532 199, 1533 200, 1534 IMAGETYPE_AVIF, 1535 'width="199" height="200"', 1525 1536 'mime' => 'image/avif', 1526 1537 ), -
branches/6.5/tests/phpunit/tests/image/editor.php
r57524 r58050 449 449 ), 450 450 array( 451 DIR_TESTDATA . '/images/avif-alpha-grid2x1.avif', 452 array( 453 'width' => 199, 454 'height' => 200, 455 'bit_depth' => 8, 456 'num_channels' => 4, 457 ), 458 ), 459 array( 451 460 DIR_TESTDATA . '/images/colors_hdr_p3.avif', 452 461 array(
Note: See TracChangeset
for help on using the changeset viewer.