@@ -39,7 +39,7 @@ public function test_auto_sizes_register_tag_visitors(): void {
39
39
public function data_provider_test_od_optimize_template_output_buffer (): array {
40
40
return array (
41
41
// Note: The Image Prioritizer plugin removes the loading attribute, and so then Auto Sizes does not then add sizes=auto.
42
- 'wrongly_lazy_responsive_img ' => array (
42
+ 'wrongly_lazy_responsive_img ' => array (
43
43
'element_metrics ' => array (
44
44
'xpath ' => '/*[1][self::HTML]/*[2][self::BODY]/*[1][self::IMG] ' ,
45
45
'isLCP ' => false ,
@@ -49,7 +49,7 @@ public function data_provider_test_od_optimize_template_output_buffer(): array {
49
49
'expected ' => '<img data-od-removed-loading="lazy" src="https://example.com/foo.jpg" alt="Foo" width="1200" height="800" srcset="https://example.com/foo-480w.jpg 480w, https://example.com/foo-800w.jpg 800w" sizes="(max-width: 600px) 480px, 800px"> ' ,
50
50
),
51
51
52
- 'non_responsive_image ' => array (
52
+ 'non_responsive_image ' => array (
53
53
'element_metrics ' => array (
54
54
'xpath ' => '/*[1][self::HTML]/*[2][self::BODY]/*[1][self::IMG] ' ,
55
55
'isLCP ' => false ,
@@ -59,7 +59,7 @@ public function data_provider_test_od_optimize_template_output_buffer(): array {
59
59
'expected ' => '<img src="https://example.com/foo.jpg" alt="Quux" width="1200" height="800" loading="lazy"> ' ,
60
60
),
61
61
62
- 'auto_sizes_added ' => array (
62
+ 'auto_sizes_added ' => array (
63
63
'element_metrics ' => array (
64
64
'xpath ' => '/*[1][self::HTML]/*[2][self::BODY]/*[1][self::IMG] ' ,
65
65
'isLCP ' => false ,
@@ -69,7 +69,7 @@ public function data_provider_test_od_optimize_template_output_buffer(): array {
69
69
'expected ' => '<img data-od-replaced-sizes="(max-width: 600px) 480px, 800px" src="https://example.com/foo.jpg" alt="Foo" width="1200" height="800" loading="lazy" srcset="https://example.com/foo-480w.jpg 480w, https://example.com/foo-800w.jpg 800w" sizes="auto, (max-width: 600px) 480px, 800px"> ' ,
70
70
),
71
71
72
- 'auto_sizes_already_added ' => array (
72
+ 'auto_sizes_already_added ' => array (
73
73
'element_metrics ' => array (
74
74
'xpath ' => '/*[1][self::HTML]/*[2][self::BODY]/*[1][self::IMG] ' ,
75
75
'isLCP ' => false ,
@@ -78,6 +78,17 @@ public function data_provider_test_od_optimize_template_output_buffer(): array {
78
78
'buffer ' => '<img src="https://example.com/foo.jpg" alt="Foo" width="1200" height="800" loading="lazy" srcset="https://example.com/foo-480w.jpg 480w, https://example.com/foo-800w.jpg 800w" sizes="auto, (max-width: 600px) 480px, 800px"> ' ,
79
79
'expected ' => '<img src="https://example.com/foo.jpg" alt="Foo" width="1200" height="800" loading="lazy" srcset="https://example.com/foo-480w.jpg 480w, https://example.com/foo-800w.jpg 800w" sizes="auto, (max-width: 600px) 480px, 800px"> ' ,
80
80
),
81
+
82
+ // If Auto Sizes added the sizes=auto attribute but Image Prioritizer ended up removing it due to the image not being lazy-loaded, remove sizes=auto again.
83
+ 'wrongly_auto_sized_responsive_img ' => array (
84
+ 'element_metrics ' => array (
85
+ 'xpath ' => '/*[1][self::HTML]/*[2][self::BODY]/*[1][self::IMG] ' ,
86
+ 'isLCP ' => false ,
87
+ 'intersectionRatio ' => 1 ,
88
+ ),
89
+ 'buffer ' => '<img src="https://example.com/foo.jpg" alt="Foo" width="1200" height="800" loading="lazy" srcset="https://example.com/foo-480w.jpg 480w, https://example.com/foo-800w.jpg 800w" sizes="auto, (max-width: 600px) 480px, 800px"> ' ,
90
+ 'expected ' => '<img data-od-replaced-sizes="auto, (max-width: 600px) 480px, 800px" data-od-removed-loading="lazy" src="https://example.com/foo.jpg" alt="Foo" width="1200" height="800" srcset="https://example.com/foo-480w.jpg 480w, https://example.com/foo-800w.jpg 800w" sizes="(max-width: 600px) 480px, 800px"> ' ,
91
+ ),
81
92
);
82
93
}
83
94
0 commit comments