Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Side by Side Diff: LayoutTests/fast/repaint/resources/display-then-call.js

Issue 942963002: Need to invalidate scrollbars in case they get repositioned. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: code review - override final Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 function displayThenCall(callback)
2 {
3 if (window.testRunner) {
4 testRunner.waitUntilDone();
5 testRunner.displayAsyncThen(function() { callback(); testRunner.notifyDo ne(); });
6 } else {
7 setTimeout(callback, 500);
8 }
9 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698