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

Side by Side Diff: third_party/WebKit/LayoutTests/web-animations-api/finish-event-after-gc.html

Issue 2093423002: Move web-animations-api tests not being upstreamed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo move of reject-hyphen.html Created 4 years, 5 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 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <body>
5 <script>
6 var layoutTest = async_test('Finish event should be delivered even if a GC occur s. This test passes if it does not time out.');
7 var events = 0;
8
9 function finish() {
10 if (window.GCController)
11 GCController.collect();
12 if (++events == 2)
13 layoutTest.done();
14 }
15
16 // Use a distinct, unreferenced instance of the handler function.
17 document.body.animate([]).onfinish = finish.bind();
18 document.body.animate([]).onfinish = finish.bind();
19
20 if (window.GCController)
21 GCController.collect();
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698