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

Side by Side Diff: third_party/WebKit/LayoutTests/images/dispose-previous.html

Issue 2887123003: Fix required frame bug in APNGs (Closed)
Patch Set: Add a LayoutTest Created 3 years, 7 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
OLDNEW
(Empty)
1 <link rel="match" href="dispose-previous-expected.html"/>
2 <img id="apng" src=resources/crbug722072.png />
3 <script>
4 if (window.testRunner) {
5 window.onload = function() {
6 testRunner.waitUntilDone();
7
8 // Jump to the final frame.
9 for (var i = 0; i < 3; i++)
10 window.internals.advanceImageAnimation(apng);
11
12 requestAnimationFrame(function() {
13 testRunner.notifyDone();
14 });
15 }
16 }
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698