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

Another example:

```xml
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
    <filter id="filter1">
        <feFlood flood-color="green" x="0" y="0" width="10" height="10"/>
        <feOffset dx="5" dy="5"/>
        <feTile/>
    </filter>
    <rect id="rect1" x="40" y="40" width="120" height="120" filter="url(#filter1)"/>
    <rect id="rect2" x="28" y="28" width="144" height="144" fill="none" stroke="black"/>
    <rect id="rect2" x="28" y="28" width="10" height="10" fill="none" stroke="black"/>

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

![1543750136](https://user-images.githubusercontent.com/725494/49339164-72d48f80-f636-11e8-98f6-8e2cb335e6d5.png)

I assume that `resvg` is the correct one, mainly because this is what I've expected to get. But the results a very different.

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

Received on Sunday, 2 December 2018 11:31:21 UTC