- πΊπΈUnited States smustgrave
Since no follow up, going to close out for now.
If still an issue please reopen, probably updating issue summary
From responsive_image_preprocess_responsive_image()
:
// Make sure that width and height are proper values
// If they exists we'll output them
// @see http://www.w3.org/community/respimg/2012/06/18/florians-compromise/
if (isset($variables['width']) && empty($variables['width'])) {
unset($variables['width']);
unset($variables['height']);
}
elseif (isset($variables['height']) && empty($variables['height'])) {
unset($variables['width']);
unset($variables['height']);
}
β¦ but those variables never make it into actual HTML. They are not merged into some general attributes array. Nor are they rendered explicitly in the responsive-image.html.twig
template.
Either support those variables, or remove them. The current documentation is very vague.
TBD
None.
TBD
TBD
Closed: outdated
11.0 π₯
Last updated
The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Since no follow up, going to close out for now.
If still an issue please reopen, probably updating issue summary