Re: [fxtf-drafts] Clarify the feTile area (#327)

>0,0 10x10; inherited from it input

But if I have something like this:

```xml
<svg id="svg1" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
    <filter id="filter1">
        <feFlood flood-color="red" x="50" y="50" width="100" height="100"/>
        <feFlood flood-color="green"/>
    </filter>
    <rect id="rect1" x="20" y="20" width="160" height="160" filter="url(#filter1)"/>

    <rect id="frame" x="1" y="1" width="198" height="198" fill="none" stroke="black"/>
</svg>
```

I will get a green rect with an area of the filter region and not with an area of the previous filter primitive. In all applications. Is this because `feFlood` ignores the `in` attribute?

So what is exactly the default filter primitive region? I can't understand it from the spec.

-- 
GitHub Notification of comment by RazrFalcon
Please view or discuss this issue at https://github.com/w3c/fxtf-drafts/issues/327#issuecomment-443512150 using your GitHub account

Received on Sunday, 2 December 2018 14:34:10 UTC