Skip to content

Commit

Permalink
REGRESSION (r198963): css3/filters/backdrop/dynamic-backdrop-filter-c…
Browse files Browse the repository at this point in the history
…hange.html frequently fails

<http://webkit.org/b/149319>

Unreviewed attempt to fix layout test.

* css3/filters/backdrop/dynamic-backdrop-filter-change.html:
Use testRunner.notifyDone() after testRunner.waitUntilDone().

Canonical link: https://commits.webkit.org/174251@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@198971 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
ddkilzer committed Apr 2, 2016
1 parent 3c1d8a2 commit 87d30cc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
2016-04-02 David Kilzer <ddkilzer@apple.com>

REGRESSION (r198963): css3/filters/backdrop/dynamic-backdrop-filter-change.html frequently fails
<http://webkit.org/b/149319>

Unreviewed attempt to fix layout test.

* css3/filters/backdrop/dynamic-backdrop-filter-change.html:
Use testRunner.notifyDone() after testRunner.waitUntilDone().

2016-04-01 Simon Fraser <simon.fraser@apple.com>

Backdrop Filter should repaint when changed via script
Expand Down
Expand Up @@ -23,11 +23,15 @@
</style>
<script>
if (window.testRunner)
testRunner.notifyDone();
testRunner.waitUntilDone();

window.addEventListener('load', function() {
window.setTimeout(function() {
document.getElementById('box').classList.add('changed');
window.setTimeout(function() {
if (window.testRunner)
testRunner.notifyDone();
}, 0);
}, 0);
}, false);
</script>
Expand Down

0 comments on commit 87d30cc

Please sign in to comment.