Bug 155955

Summary: border-image-repeat:round output doesn't match other browsers
Product: WebKit Reporter: Chris Rebert <webkit>
Component: Layout and RenderingAssignee: Brent Fulgham <bfulgham>
Status: RESOLVED FIXED    
Severity: Normal CC: ahmad.saleem792, ap, bfulgham, brandon, browserbugs2, len, livid, ntim, savagobr, simon.fraser, webkit-bug-importer, zalan
Priority: P2 Keywords: HasReduction, InRadar
Version: WebKit Nightly Build   
Hardware: All   
OS: All   
URL: http://output.jsbin.com/weqiqu/quiet
See Also: https://bugs.webkit.org/show_bug.cgi?id=229803
https://github.com/web-platform-tests/wpt/pull/39123
https://bugs.webkit.org/show_bug.cgi?id=254351
Attachments:
Description Flags
Screenshot from WebKit Nightly r198607
none
Screenshot from Firefox 47
none
Screenshot from Chrome 49 none

Description Chris Rebert 2016-03-28 13:57:32 PDT
Created attachment 275046 [details]
Screenshot from WebKit Nightly r198607

(Tested in OS X WebKit Nightly r198607 and in iOS 9.3)

Steps to reproduce:
1. Open http://output.jsbin.com/weqiqu/quiet in WebKit/Safari.
2. Note that the page's CSS uses `border-image-repeat: round round;` for the border in question.
3. Observe the red, blue, and transparent border.

Expected result:
Each segment of red, blue, and transparency in the border should be relatively short.
(See attached screenshots from other browsers)

Actual result:
Each segment of red, blue, and transparency in the border is relatively long, roughly twice as long as in the other browsers.
(See attached screenshot from WebKit Nightly)
Comment 1 Chris Rebert 2016-03-28 13:58:12 PDT
Created attachment 275047 [details]
Screenshot from Firefox 47
Comment 2 Chris Rebert 2016-03-28 13:58:40 PDT
Created attachment 275049 [details]
Screenshot from Chrome 49
Comment 3 Chris Rebert 2016-03-28 14:00:00 PDT
See also: https://github.com/Fyrd/caniuse/issues/2366
Comment 4 Alexey Proskuryakov 2016-09-08 14:01:11 PDT
<rdar://problem/28213711>
Comment 5 Simon Fraser (smfr) 2016-09-29 22:15:52 PDT
We fail to implement the "and their width is scaled proportionally" bit of https://www.w3.org/TR/css3-background/#border-image-process.

Fixing this and the rendering of the middle part of the image requires hoisting the tiling mode logic out of Image::drawTiled() and up into NicePieceImage.
Comment 6 Adenilson Cavalcanti Silva 2016-10-12 13:30:41 PDT
If this one is available, I would like to work on it.
Comment 7 Simon Fraser (smfr) 2016-10-12 14:01:58 PDT
Please do. I started looking at this and it's a bit more involved than I thought.

Basically I think the fix should reflect this comment in Image::drawTiled():
    // FIXME: These rules follow CSS border-image rules, but they should not be down here in Image.

so the 'space' and 'round' logic there needs to pushed up into NinePieceImage::computeTileScales(), maybe as part of scaleSlicesIfNeeded(). This probably requires sending 'spacing' and 'phase' down through GraphicsContext::drawTiledImage(). I think this code move is necessary to implement this part of the spec:

"The middle image's width is scaled by the same factor as the top image unless that factor is zero or infinity, in which case the scaling factor of the bottom is substituted, and failing that, the width is not scaled. The height of the middle image is scaled by the same factor as the left image unless that factor is zero or infinity, in which case the scaling factor of the right image is substituted, and failing that, the height is not scaled."
Comment 8 len 2021-09-01 22:13:32 PDT
Is this still not fixed?  I'm still seeing this issue in 2021, 5.5 years after this was reported.  

https://stackoverflow.com/questions/68896770/border-image-slicing-differences-between-browsers
Comment 9 Ahmad Saleem 2022-09-01 04:34:47 PDT
I am able to reproduce this bug in Safari Technology Preview 152 using attached JSBin from URL field and the border does not match with other browsers (Chrome Canary 107 and Firefox Nightly 106).

Just wanted to share updated testing results. Thanks!
Comment 10 Brent Fulgham 2023-03-17 16:54:33 PDT
(In reply to Simon Fraser (smfr) from comment #7)
> Please do. I started looking at this and it's a bit more involved than I
> thought.
> 
> Basically I think the fix should reflect this comment in Image::drawTiled():
>     // FIXME: These rules follow CSS border-image rules, but they should not
> be down here in Image.
> 
> so the 'space' and 'round' logic there needs to pushed up into
> NinePieceImage::computeTileScales(), maybe as part of scaleSlicesIfNeeded().
> This probably requires sending 'spacing' and 'phase' down through
> GraphicsContext::drawTiledImage(). I think this code move is necessary to
> implement this part of the spec:
> 
> "The middle image's width is scaled by the same factor as the top image
> unless that factor is zero or infinity, in which case the scaling factor of
> the bottom is substituted, and failing that, the width is not scaled. The
> height of the middle image is scaled by the same factor as the left image
> unless that factor is zero or infinity, in which case the scaling factor of
> the right image is substituted, and failing that, the height is not scaled."

I think the logic in NinePieceImage::computeMiddleTileScale(...) correctly addresses the above (at east for zero -- not sure if Infinity ever gets this far).

I believe I've found a calculation error. Patch coming.
Comment 11 Brent Fulgham 2023-03-17 17:01:11 PDT
Pull request: https://github.com/WebKit/WebKit/pull/11668
Comment 12 EWS 2023-03-20 18:25:22 PDT
Committed 261903@main (255da9f55bbe): <https://commits.webkit.org/261903@main>

Reviewed commits have been landed. Closing PR #11668 and removing active labels.
Comment 13 Brent Fulgham 2023-03-21 14:12:48 PDT
See also: https://github.com/web-platform-tests/wpt/pull/39123
Comment 14 Ahmad Saleem 2023-03-23 21:29:36 PDT
*** Bug 229803 has been marked as a duplicate of this bug. ***
Comment 15 Brent Fulgham 2023-03-31 15:15:36 PDT
*** Bug 254843 has been marked as a duplicate of this bug. ***