<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:simon.fraser&#64;apple.com" title="Simon Fraser (smfr) &lt;simon.fraser&#64;apple.com&gt;"> <span class="fn">Simon Fraser (smfr)</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Compositing layer is too large when inner element has a blur that is within bounds"
   href="https://bugs.webkit.org/show_bug.cgi?id=155288">bug 155288</a>
        <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Depends on</td>
           <td>
               &nbsp;
           </td>
           <td>81239
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Compositing layer is too large when inner element has a blur that is within bounds"
   href="https://bugs.webkit.org/show_bug.cgi?id=155288#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Compositing layer is too large when inner element has a blur that is within bounds"
   href="https://bugs.webkit.org/show_bug.cgi?id=155288">bug 155288</a>
              from <span class="vcard"><a class="email" href="mailto:simon.fraser&#64;apple.com" title="Simon Fraser (smfr) &lt;simon.fraser&#64;apple.com&gt;"> <span class="fn">Simon Fraser (smfr)</span></a>
</span></b>
        <pre>For the first square:
renderer().style().filterOutsets().expandRect(unionBounds);
is adding 28px on each side for the 10px blur. This comes from outsetSizeForBlur() which has this comment:
    // We take the half kernel size and multiply it with three, because we run box blur three times.

The kernel size is 19x19, which is computed by:
    unsigned size = std::max&lt;unsigned&gt;(2, static_cast&lt;unsigned&gt;(floorf(value * gaussianKernelFactor() + 0.5f)));
where gaussianKernelFactor() returns 1.87997127

This is emulating the suggested approximation the SVG spec &lt;<a href="https://www.w3.org/TR/SVG/filters.html#feGaussianBlurElement">https://www.w3.org/TR/SVG/filters.html#feGaussianBlurElement</a>&gt;</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>