Bug 109758 - userSpaceOnUse patterns are not stroked for empty object bounding box elements
Summary: userSpaceOnUse patterns are not stroked for empty object bounding box elements
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: SVG (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Florin Malita
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-13 15:40 PST by Florin Malita
Modified: 2016-03-22 20:28 PDT (History)
11 users (show)

See Also:


Attachments
Should display a green rect - fails on ToT. (619 bytes, image/svg+xml)
2013-02-13 15:40 PST, Florin Malita
no flags Details
Patch (5.51 KB, patch)
2013-02-13 15:49 PST, Florin Malita
no flags Details | Formatted Diff | Diff
Patch (5.40 KB, patch)
2013-02-14 11:59 PST, Florin Malita
no flags Details | Formatted Diff | Diff
test case (447 bytes, image/svg+xml)
2016-03-22 16:35 PDT, Said Abou-Hallawa
no flags Details
Patch (6.19 KB, patch)
2016-03-22 17:02 PDT, Said Abou-Hallawa
no flags Details | Formatted Diff | Diff
Archive of layout-test-results from ews121 for ios-simulator-wk2 (809.38 KB, application/zip)
2016-03-22 17:44 PDT, Build Bot
no flags Details
Patch (6.21 KB, patch)
2016-03-22 17:52 PDT, Said Abou-Hallawa
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Florin Malita 2013-02-13 15:40:25 PST
Created attachment 188199 [details]
Should display a green rect - fails on ToT.

The spec is somewhat confusing when it comes to patternUnits == 'objectBoundingBox' vs. elements with an empty object bounding box (see https://bugs.webkit.org/show_bug.cgi?id=109665).

But for patternUnits == 'userSpaceOnUse', the whole empty object bounding box logic is not applicable.

We have a bug where elements with an empty OBB are not pattern-stroked on the first paint:

    if (m_attributes.patternUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && objectBoundingBox.isEmpty())
        return false;

Unfortunately, we are making this decision before updating patternUnits from the element, so we're always seeing SVG_UNIT_TYPE_OBJECTBOUNDINGBOX on the first pass! Later, if a second element gets painted, the pattern attributes get collected and patternUnits is updated to the specified SVG_UNIT_TYPE_USERSPACEONUSE. Then on subsequent repaints the empty bounding box logic no longer kicks in because attributes are up to date.
Comment 1 Florin Malita 2013-02-13 15:49:30 PST
Created attachment 188202 [details]
Patch
Comment 2 Philip Rogers 2013-02-13 15:51:08 PST
Comment on attachment 188202 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=188202&action=review

We will also need to make this same change in RenderSVGResourceGradient, and possible elsewhere as well.

> Source/WebCore/rendering/svg/RenderSVGResourcePattern.cpp:78
> +    FloatRect objectBoundingBox = object->objectBoundingBox();

Is this local variable needed?
Comment 3 Florin Malita 2013-02-13 15:55:43 PST
(In reply to comment #2)
> (From update of attachment 188202 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=188202&action=review
> 
> We will also need to make this same change in RenderSVGResourceGradient, and possible elsewhere as well.

Gradients are OK and probably all other resource renderers. This was introduced recently, most likely by a change by yours truly :)

> 
> > Source/WebCore/rendering/svg/RenderSVGResourcePattern.cpp:78
> > +    FloatRect objectBoundingBox = object->objectBoundingBox();
> 
> Is this local variable needed?

Nope, we can fold.
Comment 4 Florin Malita 2013-02-14 11:59:52 PST
Created attachment 188396 [details]
Patch

Updated per comments.
Comment 5 Brent Fulgham 2016-03-14 12:14:04 PDT
Comment on attachment 188396 [details]
Patch

This patch no longer applies cleanly. For that reason, r-.
Comment 6 Said Abou-Hallawa 2016-03-22 16:34:01 PDT
The attached test case is confusing. It does not display on any browser. The test also includes patternUnits='userSpaceOnUse' while the bug is about patternUnits == 'objectBoundingBox'. It also include mask which is not related to this bug.
Comment 7 Said Abou-Hallawa 2016-03-22 16:35:13 PDT
Created attachment 274697 [details]
test case
Comment 8 Said Abou-Hallawa 2016-03-22 16:36:20 PDT
The attaches "test case" does not display correctly in WebKit but it does display correctly in FireFox and Chrome.
Comment 9 Said Abou-Hallawa 2016-03-22 17:02:47 PDT
Created attachment 274705 [details]
Patch
Comment 10 Said Abou-Hallawa 2016-03-22 17:08:49 PDT
I prefer to call collectPatternAttributes() from RenderSVGResourcePattern::applyResource() instead of leaving it in RenderSVGResourcePattern::buildPattern() because I think it is hard to track this side effect of buildPattern(). The function name does not say it is also ensuring the pattern attributes are collected.

applyResource() is the only caller to buildPattern(). Also m_attributes is only used by applyResource() and buildPattern().
Comment 11 Build Bot 2016-03-22 17:44:39 PDT
Comment on attachment 274705 [details]
Patch

Attachment 274705 [details] did not pass ios-sim-ews (ios-simulator-wk2):
Output: http://webkit-queues.webkit.org/results/1023244

New failing tests:
svg/custom/pattern-units-fill-stroke.svg
Comment 12 Build Bot 2016-03-22 17:44:42 PDT
Created attachment 274715 [details]
Archive of layout-test-results from ews121 for ios-simulator-wk2

The attached test failures were seen while running run-webkit-tests on the ios-sim-ews.
Bot: ews121  Port: ios-simulator-wk2  Platform: Mac OS X 10.10.5
Comment 13 Said Abou-Hallawa 2016-03-22 17:52:13 PDT
Created attachment 274716 [details]
Patch
Comment 14 Brent Fulgham 2016-03-22 19:39:47 PDT
Comment on attachment 274716 [details]
Patch

r=me
Comment 15 WebKit Commit Bot 2016-03-22 20:28:12 PDT
Comment on attachment 274716 [details]
Patch

Clearing flags on attachment: 274716

Committed r198574: <http://trac.webkit.org/changeset/198574>
Comment 16 WebKit Commit Bot 2016-03-22 20:28:18 PDT
All reviewed patches have been landed.  Closing bug.