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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/keyframeeffect-no-target-crash.html

Issue 2961573002: Fix nullptr deref in InvalidateKeyframeEffect (Closed)
Patch Set: Response to review Created 3 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/keyframeeffect-no-target-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <div id="target">This test passes if it does not crash.</div>
2 <script>
3 let effect = new KeyframeEffect(null, null, {duration: 1000});
4 let animation = new Animation(effect);
5
6 if (window.testRunner) {
7 testRunner.waitUntilDone();
8 testRunner.dumpAsText();
9 requestAnimationFrame(function() {
10 testRunner.notifyDone();
11 });
12 }
13 </script>
14 <style>
15 @keyframes frame { }
16 </style>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/keyframeeffect-no-target-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698