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

Side by Side Diff: LayoutTests/svg/filters/filtered-animated-image-crash.html

Issue 1220053003: Disentangle filter content recording state from FilterData (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test. Created 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/svg/filters/filtered-animated-image-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 <!DOCTYPE html>
2 <script src=../../resources/run-after-layout-and-paint.js></script>
3 <svg>
4 <filter id='filt'><feMerge><feMergeNode/></feMerge></filter>
5 <image height='400' width='400' filter='url(#filt)'
6 xlink:href='../../fast/images/resources/animated-10color-fast.gif'
7 onload="runTest()"/>
8 </svg>
9 <p>PASS if no crash.</p>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13
14 function runTest() {
15 // Nudge the frame time for the image to force the animation to catch up.
16 if (window.internals)
17 internals.advanceTimeForImage(document.querySelector('image'), 0.5);
18 runAfterLayoutAndPaint(function(){}, true);
19 }
20 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/filters/filtered-animated-image-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698