Changeset 54802 for trunk/tests/phpunit/tests/media.php
- Timestamp:
- 11/11/2022 12:59:20 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/media.php
r54417 r54802 3164 3164 3165 3165 /** 3166 * Test that decoding="async" is not applied to img tags with single quotes. 3167 * 3168 * @ticket 56969 3169 */ 3170 public function test_wp_img_tag_add_decoding_attr_with_single_quotes() { 3171 $img = "<img src='example.png' alt='' width='300' height='225' />"; 3172 $img = wp_img_tag_add_decoding_attr( $img, 'test' ); 3173 $this->assertStringNotContainsString( ' decoding="async"', $img ); 3174 } 3175 3176 /** 3177 * Test that decoding="async" is not applied to img tags inside JSON. 3178 * 3179 * @ticket 56969 3180 */ 3181 public function test_decoding_async_not_applied_to_json() { 3182 $content = '{"image": "<img src=\"example.png\" alt=\"\" width=\"300\" height=\"225\" />"}'; 3183 $content = wp_filter_content_tags( $content ); 3184 $this->assertStringNotContainsString( ' decoding="async"', $content ); 3185 } 3186 3187 /** 3166 3188 * @ticket 50756 3167 3189 */
Note: See TracChangeset
for help on using the changeset viewer.