NEW 170834
background-size with 2nd value is 'auto' and the image has no intrinsic size and no intrinsic ratio incorrectly rendered
https://bugs.webkit.org/show_bug.cgi?id=170834
Summary background-size with 2nd value is 'auto' and the image has no intrinsic size ...
Philippe Wittenbergh
Reported 2017-04-13 16:47:06 PDT
Example URL: http://www.gtalbot.org/BrowserBugsSection/CSS3Backgrounds/draft-background-size-one-value-percent-0xx.xht Per CSS3 - backgrounds: https://drafts.csswg.org/css-backgrounds/#the-background-size For background-size: > [ <length-percentage> | auto ]{1,2} > The first value gives the width of the corresponding image, the second value its height. If only one value is given the second is assumed to be ‘auto’. further, for “auto”, the text notes: > An ‘auto’ value for one dimension is resolved by using the image's intrinsic ratio and the size of the other dimension, or failing that, using the image's intrinsic size, or failing that, treating it as 100%. For a gradient (as in the example), the “image” has no intrinsic size, thus 100% should be used. That is what Firefox / Gecko does. Chrome and Safari are wrong. one <percent> value http://www.gtalbot.org/BrowserBugsSection/CSS3Backgrounds/draft-background-size-one-value-percent-0xx.xht or one <length> value http://www.gtalbot.org/BrowserBugsSection/CSS3Backgrounds/draft-background-size-one-value-0xx.xht What is the expected behavior? Filled green square and no red What went wrong? sliver of green and large area of red (related discussion on the CSS WG list: https://lists.w3.org/Archives/Public/www-style/2017Apr/thread.html#msg29
Attachments
Philippe Wittenbergh
Comment 1 2017-04-13 16:49:14 PDT
Gérard Talbot (no longer involved)
Comment 2 2017-04-13 20:01:32 PDT
2 additional tests with identical actual results (incorrect behaviors): background-size: 10% auto; http://www.gtalbot.org/BrowserBugsSection/CSS3Backgrounds/draft-background-size-percent-auto-no-intrinsic-0xx.xht background-size: 10px auto; http://www.gtalbot.org/BrowserBugsSection/CSS3Backgrounds/draft-background-size-length-auto-no-intrinsic-0xx.xht 2 additional tests with identical actual results (incorrect behaviors) *_using SVG image_* with no intrinsic ratio: background-size: 10% auto; http://www.gtalbot.org/BrowserBugsSection/CSS3Backgrounds/draft-background-size-percent-auto-no-intrinsic-0xy.xht background-size: 10px auto; http://www.gtalbot.org/BrowserBugsSection/CSS3Backgrounds/draft-background-size-length-auto-no-intrinsic-0xy.xht
Radar WebKit Bug Importer
Comment 3 2017-04-15 17:41:35 PDT
Simon Fraser (smfr)
Comment 4 2017-04-26 07:28:52 PDT
Need to fix RenderBoxModelObject::calculateFillTileSize) which calls RenderBoxModelObject::calculateImageIntrinsicDimensions() which has this: // A generated image without a fixed size, will always return the container size as intrinsic size. if (image->isGeneratedImage() && image->usesImageContainerSize())
Gérard Talbot (no longer involved)
Comment 5 2017-05-05 14:13:29 PDT
The summary (title) of this bug report should say *_background-size_* and not background-position! All 6 tests mentioned in this bug report are testing and were indeed testing *_background-size_* and not background-position. So, I tuned accordingly the text in the 6 tests and I updated the summary text of this bug report.
Tobi Reif
Comment 6 2018-05-14 01:20:20 PDT
It would be great if this could get fixed
Karl Dubost
Comment 9 2024-12-01 19:28:40 PST
https://searchfox.org/wubkat/rev/d45649fa32a499702c30474e94bd6843c4c67849/Source/WebCore/rendering/RenderBoxModelObject.cpp#787-789 // A generated image without a fixed size, will always return the container size as intrinsic size. if (!image->imageHasNaturalDimensions()) return LayoutSize(positioningAreaSize.width(), positioningAreaSize.height()); Probably should be testing for SVGElement and intrisic sizing too. https://searchfox.org/wubkat/source/Source/WebCore/svg/SVGSVGElement.cpp#639
Note You need to log in before you can comment on or make changes to this bug.