Regression: current dev does not output webp source + img element for responsive jpg fallback

Created on 8 January 2023, about 2 years ago
Updated 28 February 2024, about 1 year ago

Problem/Motivation

For responsive image styles using the sizes attribute, the most recent commit has broken the ability to output a webp source tag with fallback jpg img tag containing a srcset attribute.

Responsive webp images are displayed by supporting browsers, but there is no responsive jpeg fallback output for older browsers.

It looks like critical code was removed from wpf_preprocess_responsive_image(). I am not sure if this was intentional, to be re-implemented elsewhere, or merely an oversight.

Steps to reproduce

Using current dev commit #3755d811, check the page source for a webp converted responsive image. It is now just a single img tag with a srcset attribute containing only webp sources, and a single fallback jpeg src attribute. This cannot work as a responsive image for browsers that do not support webp:

<img srcset="xxxx.jpg.webp?itok=Xw9Xe3OC [...] src="xxxx.jpg.jpg?itok=LTjSBisl" [...]>

Previously in commit #8eb0caee or before the (working) output was a picture element with source and img tags:

<picture>
    <source srcset="xxxx.jpg.webp?itok=Xw9Xe3OC [...] type="image/webp" sizes= [...]>
    <img srcset="xxxx.jpg.jpg?itok=LTjSBisl [...] sizes= [...]>
</picture>

Note the srcset attribute for the img tag - this allows browsers that do not support webp to display responsive images, not just a single fixed fallback.

Proposed resolution

Either restore the appropriate preprocess code to output a source tag and fallback img tag with srcset, or implement that functionality elsewhere.

Remaining tasks

Clarify the intent of this most recent change.

@dj1999 this was your commit. Did you intend to remove this code, which ensures a picture element is used?

function wpf_preprocess_responsive_image(&$variables): void {
  $variables['output_image_tag'] = FALSE;
  /** @var \Drupal\Core\Template\AttributeString $srcset */
  $srcset = $variables['img_element']['#attributes']['srcset'] ?? '';
  if ($srcset instanceof AttributeString) {
    $attributes = _wpf_get_jpg($srcset);
    $variables['img_element']['#attributes']['srcset'] =
      new AttributeString('srcset', $attributes);
  }
πŸ› Bug report
Status

Postponed: needs info

Version

1.0

Component

Code

Created by

πŸ‡³πŸ‡ΏNew Zealand john pitcairn

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡­πŸ‡ΊHungary dj1999

    @John Pitcairn thank for issue, but maybe I make something wrong because I havent value in

    $variables['img_element']['#attributes']['srcset']

    .

    If I debugging the preprocess hook get this value in image_element:

    {
       "#theme":"image",
       "#uri":"\/sites\/default\/files\/styles\/image_16_10_w400\/public\/lead_image\/2023-01\/image.jpg.webp?itok=VcyJckyY",
       "#alt":"dsfsfs",
       "#attributes":[]
    }
    

    I get srcset in $variables['sources']

    [
       " srcset=\"\/sites\/default\/files\/styles\/image_16_10_w1400\/public\/lead_image\/2023-01\/image.jpg.webp?itok=WGEWjlPu 1x\" media=\"screen and (min-width: 48em)\" type=\"image\/webp\"",
       " srcset=\"\/sites\/default\/files\/styles\/image_16_10_w1100\/public\/lead_image\/2023-01\/image.webp?itok=CmAnDmib 1x\" media=\"screen and (min-width: 23em)\" type=\"image\/webp\"",
       " srcset=\"\/sites\/default\/files\/styles\/image_16_10_w800\/public\/lead_image\/2023-01\/image.webp?itok=J9movyV3 1x\" media=\"screen and (min-width: 0em)\" type=\"image\/webp\""
    ]
    

    I do not know what is the different in responsive image module but the code above is not working ith this version.

  • Status changed to Postponed: needs info almost 2 years ago
  • Hello, I've created this patch for fixing the issue with the source tag in some case.

    β†’

  • πŸ‡ΊπŸ‡ΈUnited States Christian DeLoach

    Thank you Froozeify.

    Your patched worked perfect! Images are now working correctly in Safari (MacOS Catalina).

    Before your patch, images were rendered as John had reported:

    <img srcset="xxxx.jpg.webp?itok=Xw9Xe3OC [...] src="xxxx.jpg.jpg?itok=LTjSBisl" [...]>

    After applying the patch, images now render as:

    <picture>
        <source srcset="xxxx.jpg.webp?itok=Xw9Xe3OC [...] type="image/webp" sizes= [...]>
        <img src="xxxx.jpg.jpg?itok=LTjSBisl [...] width="..." height="...">
    </picture>
  • πŸ‡³πŸ‡ΏNew Zealand john pitcairn

    @ChristianDeLoach, could you please check the following:

    The img tag should also contain a srcset attribute listing the responsive jpg versions.

    If the img tag only contains a src attribute, then there is no responsive jpg support for browsers that do not support webp. There is still only a single jpg fallback.

  • πŸ‡ΊπŸ‡ΈUnited States Christian DeLoach

    @John,

    No, the img tag only contains a src attribute, no srcset attribute. While this means the fallback image is not responsive, the same can be said about the pre-patch markup which uses a srcset attribute for the .webp images and src attribute for the fallback .jpg image.

    The ideal implementation would be to have a second tag with type="image/jpeg" rather than add responsiveness to the
    fallback , for example:




  • πŸ‡³πŸ‡ΏNew Zealand john pitcairn

    That's what this issue is about. The regression is that there used to be a fully responsive jpg fallback, and now there is not.

    The patch does not restore that functionality.

  • πŸ‡ΊπŸ‡ΈUnited States Christian DeLoach

    I guess it's a work in progress. The patch does restore the use of the
    tag with and tags which appeared to be the primary focus of the issue, and is the ideal way to implement multiple image types, but does fall short of providing a responsive fallback image.

  • πŸ‡³πŸ‡ΏNew Zealand john pitcairn

    I think my issue summary was poorly worded...

Production build 0.71.5 2024