Changeset 53480
- Timestamp:
- 06/09/2022 05:29:57 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r53149 r53480 1012 1012 * Optional. Attributes for the image markup. 1013 1013 * 1014 * @type string $src Image attachment URL. 1015 * @type string $class CSS class name or space-separated list of classes. 1016 * Default `attachment-$size_class size-$size_class`, 1017 * where `$size_class` is the image size being requested. 1018 * @type string $alt Image description for the alt attribute. 1019 * @type string $srcset The 'srcset' attribute value. 1020 * @type string $sizes The 'sizes' attribute value. 1021 * @type string|false $loading The 'loading' attribute value. Passing a value of false 1022 * will result in the attribute being omitted for the image. 1023 * Defaults to 'lazy', depending on wp_lazy_loading_enabled(). 1014 * @type string $src Image attachment URL. 1015 * @type string $class CSS class name or space-separated list of classes. 1016 * Default `attachment-$size_class size-$size_class`, 1017 * where `$size_class` is the image size being requested. 1018 * @type string $alt Image description for the alt attribute. 1019 * @type string $srcset The 'srcset' attribute value. 1020 * @type string $sizes The 'sizes' attribute value. 1021 * @type string|false $loading The 'loading' attribute value. Passing a value of false 1022 * will result in the attribute being omitted for the image. 1023 * Defaults to 'lazy', depending on wp_lazy_loading_enabled(). 1024 * @type string $decoding The 'decoding' attribute value. Possible values are 1025 * 'async' (default), 'sync', or 'auto'. 1024 1026 * } 1025 1027 * @return string HTML img element or empty string on failure. … … 1041 1043 1042 1044 $default_attr = array( 1043 'src' => $src, 1044 'class' => "attachment-$size_class size-$size_class", 1045 'alt' => trim( strip_tags( get_post_meta( $attachment_id, '_wp_attachment_image_alt', true ) ) ), 1045 'src' => $src, 1046 'class' => "attachment-$size_class size-$size_class", 1047 'alt' => trim( strip_tags( get_post_meta( $attachment_id, '_wp_attachment_image_alt', true ) ) ), 1048 'decoding' => 'async', 1046 1049 ); 1047 1050 … … 1844 1847 } 1845 1848 1849 1850 1851 1852 1853 1846 1854 /** 1847 1855 * Filters an img tag within the content for a given context. … … 1930 1938 1931 1939 return str_replace( '<img', '<img loading="' . esc_attr( $value ) . '"', $image ); 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1932 1980 } 1933 1981 -
trunk/src/wp-includes/pluggable.php
r53473 r53480 2765 2765 'loading' => null, 2766 2766 'extra_attr' => '', 2767 2767 2768 ); 2768 2769 … … 2850 2851 2851 2852 $extra_attr .= "loading='{$loading}'"; 2853 2854 2855 2856 2857 2858 2859 2852 2860 } 2853 2861 -
trunk/tests/phpunit/tests/avatar.php
r51565 r53480 170 170 public function test_get_avatar() { 171 171 $img = get_avatar( 1 ); 172 $this->assertSame( preg_match( "|^<img alt='[^']*' src='[^']*' srcset='[^']*' class='[^']*' height='[^']*' width='[^']*' loading='lazy' />$|", $img ), 1 );172 $this->assertSame( preg_match( "|^<img alt='[^']*' src='[^']*' srcset='[^']*' class='[^']*' height='[^']*' width='[^']*' loading='lazy'/>$|", $img ), 1 ); 173 173 } 174 174 -
trunk/tests/phpunit/tests/media.php
r53465 r53480 1475 1475 $image = image_downsize( self::$large_id, 'thumbnail' ); 1476 1476 $expected = sprintf( 1477 '<img width="%1$d" height="%2$d" src="%3$s" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" />',1477 '<img width="%1$d" height="%2$d" src="%3$s" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" />', 1478 1478 $image[1], 1479 1479 $image[2], … … 1513 1513 $image = image_downsize( self::$large_id, 'thumbnail' ); 1514 1514 $expected = sprintf( 1515 '<img width="%1$d" height="%2$d" src="%3$s" class="attachment-thumbnail size-thumbnail" alt="Some very clever alt text" loading="lazy" />',1515 '<img width="%1$d" height="%2$d" src="%3$s" class="attachment-thumbnail size-thumbnail" alt="Some very clever alt text" loading="lazy" />', 1516 1516 $image[1], 1517 1517 $image[2], … … 2248 2248 $respimg_html5 2249 2249 ); 2250 2250 2251 2251 2252 // Do not add width, height, and loading. … … 2273 2274 $img = get_image_tag( self::$large_id, '', '', '', 'medium' ); 2274 2275 $img = wp_img_tag_add_loading_attr( $img, 'test' ); 2276 2275 2277 2276 2278 // Replace the src URL. … … 2287 2289 $img = get_image_tag( self::$large_id, '', '', '', 'medium' ); 2288 2290 $img = wp_img_tag_add_loading_attr( $img, 'test' ); 2291 2289 2292 $img = preg_replace( '|<img ([^>]+) />|', '<img $1 ' . 'srcset="image2x.jpg 2x" />', $img ); 2290 2293 … … 2334 2337 public function test_wp_filter_content_tags_filter_with_identical_image_tags_custom_attributes() { 2335 2338 $img = get_image_tag( self::$large_id, '', '', '', 'large' ); 2336 $img = str_replace( '<img ', '<img srcset="custom" sizes="custom" loading="custom" ', $img );2339 $img = str_replace( '<img ', '<img srcset="custom" sizes="custom" loading="custom" ', $img ); 2337 2340 $content = "$img\n$img"; 2338 2341 … … 2359 2362 add_filter( 'wp_img_tag_add_width_and_height_attr', '__return_false' ); 2360 2363 add_filter( 'wp_img_tag_add_srcset_and_sizes_attr', '__return_false' ); 2364 2361 2365 2362 2366 add_filter( … … 2461 2465 $respimg_relative 2462 2466 ); 2467 2463 2468 2464 2469 $actual = wp_filter_content_tags( $unfiltered ); … … 2603 2608 $expected = '<img width="999" height="999" ' . 2604 2609 'src="' . $uploads_url . 'test-image-testsize-999x999.jpg" ' . 2605 'class="attachment-testsize size-testsize" alt="" loading="lazy" ' .2610 'class="attachment-testsize size-testsize" alt="" loading="lazy" ' . 2606 2611 'srcset="' . $uploads_url . 'test-image-testsize-999x999.jpg 999w, ' . $uploads_url . $basename . '-150x150.jpg 150w" ' . 2607 2612 'sizes="(max-width: 999px) 100vw, 999px" />'; … … 2910 2915 2911 2916 $content_unfiltered = sprintf( $content, $img, $img_no_width_height, $img_no_width, $img_no_height ); 2912 $content_filtered = sprintf( $content, $img, $respimg_no_width_height, $img_no_width, $img_no_height);2917 $content_filtered = ); 2913 2918 2914 2919 // Do not add loading, srcset, and sizes. … … 2968 2973 2969 2974 $content_unfiltered = sprintf( $content, $img, $img_xhtml, $img_html5, $img_eager, $img_no_width_height, $iframe, $iframe_eager, $iframe_no_width_height ); 2970 $content_filtered = sprintf( $content, $lazy_img, $lazy_img_xhtml, $lazy_img_html5, $img_eager, $img_no_width_height, $lazy_iframe, $iframe_eager, $iframe_no_width_height);2975 $content_filtered = ); 2971 2976 2972 2977 // Do not add width, height, srcset, and sizes. … … 2997 3002 2998 3003 $content_unfiltered = sprintf( $content, $img, $iframe ); 2999 $content_filtered = sprintf( $content, $lazy_img, $lazy_iframe);3004 $content_filtered = sprintf( $content, ); 3000 3005 3001 3006 // Do not add srcset and sizes while testing. … … 3015 3020 */ 3016 3021 public function test_wp_filter_content_tags_loading_lazy_opted_out() { 3017 $img = get_image_tag( self::$large_id, '', '', '', 'medium' );3022 $img = ' ); 3018 3023 $iframe = '<iframe src="https://www.example.com" width="640" height="360"></iframe>'; 3019 3024 … … 3479 3484 // Following the threshold of 2, the first two content media elements should not be lazy-loaded. 3480 3485 $content_unfiltered = $img1 . $iframe1 . $img2 . $img3 . $iframe2; 3481 $content_expected = $img1 . $iframe1 . $lazy_img2 . $lazy_img3 . $lazy_iframe2;3486 $content_expected = ; 3482 3487 3483 3488 $wp_query = new WP_Query( array( 'post__in' => array( self::$post_ids['publish'] ) ) ); -
trunk/tests/phpunit/tests/media/getAdjacentImageLink.php
r52010 r53480 33 33 'current_attachment_index' => 3, 34 34 'expected_attachment_index' => 2, 35 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src=" http://example.org/wp-content/uploads/image2.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>',35 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src="" loading="lazy" /></a>', 36 36 ), 37 37 'with text when has previous link' => array( … … 44 44 'current_attachment_index' => 4, 45 45 'expected_attachment_index' => 5, 46 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src=" http://example.org/wp-content/uploads/image5.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>',46 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src="" loading="lazy" /></a>', 47 47 'args' => array( 'prev' => false ), 48 48 ), -
trunk/tests/phpunit/tests/media/getNextImageLink.php
r52010 r53480 32 32 'current_attachment_index' => 4, 33 33 'expected_attachment_index' => 5, 34 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src=" http://example.org/wp-content/uploads/image5.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>',34 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src="" loading="lazy" /></a>', 35 35 ), 36 36 'with text when has next link' => array( -
trunk/tests/phpunit/tests/media/getPreviousImageLink.php
r52010 r53480 32 32 'current_attachment_index' => 3, 33 33 'expected_attachment_index' => 2, 34 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src=" http://example.org/wp-content/uploads/image2.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>',34 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src="" loading="lazy" /></a>', 35 35 ), 36 36 'with text when has previous link' => array( -
trunk/tests/phpunit/tests/media/nextImageLink.php
r52010 r53480 31 31 'current_attachment_index' => 4, 32 32 'expected_attachment_index' => 5, 33 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src=" http://example.org/wp-content/uploads/image5.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>',33 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src="" loading="lazy" /></a>', 34 34 ), 35 35 'with text when has next link' => array( -
trunk/tests/phpunit/tests/media/previousImageLink.php
r52010 r53480 31 31 'current_attachment_index' => 3, 32 32 'expected_attachment_index' => 2, 33 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src=" http://example.org/wp-content/uploads/image2.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>',33 'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src="" loading="lazy" /></a>', 34 34 ), 35 35 'with text when has previous link' => array(
Note: See TracChangeset
for help on using the changeset viewer.