<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Backdrop Filter should repaint when changed via script"
   href="https://bugs.webkit.org/show_bug.cgi?id=149319">149319</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Backdrop Filter should repaint when changed via script
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>WebKit
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>WebKit Nightly Build
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>Normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P2
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>WebCore Misc.
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>webkit-unassigned&#64;lists.webkit.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>joepeck&#64;webkit.org
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>dino&#64;apple.com, webkit-bug-importer&#64;group.apple.com
          </td>
        </tr></table>
      <p>
        <div>
        <pre>* SUMMARY
Backdrop Filter should repaint when changed via script.

* TEST
&lt;style&gt;
.back {
    width: 300px;
    height: 150px;
    margin: 100px;
    background: blue;
}
.top {
    width: 1000px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 150px;
    -webkit-backdrop-filter: blur(50px);
}
&lt;/style&gt;
&lt;div class=&quot;back&quot;&gt;
    &lt;div id=&quot;x&quot; class=&quot;top&quot;&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;button id=&quot;a&quot;&gt;Blur 10&lt;/button&gt;
&lt;button id=&quot;b&quot;&gt;Blur -10&lt;/button&gt;
&lt;button id=&quot;c&quot;&gt;Blur 50&lt;/button&gt;
&lt;button id=&quot;d&quot;&gt;Show / Hide the element&lt;/button&gt;

&lt;script&gt;
a.onclick = function() { x.style.webkitBackdropFilter = &quot;blur(10px)&quot;; }
b.onclick = function() { x.style.webkitBackdropFilter = &quot;blur(-10px)&quot;; }
c.onclick = function() { x.style.webkitBackdropFilter = &quot;blur(50px)&quot;; }
d.onclick = function() { x.hidden = !x.hidden; }
&lt;/script&gt;

* STEPS TO REPRODUCE
1. Show test
2. Click on one of the Blur buttons to change the blur
  =&gt; nothing happens, expected the element to repaint
3. Click the button to hide the blur element
3. Click the button to show the blur element
  =&gt; blur is now updated</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>