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

Side by Side Diff: LayoutTests/svg/filters/feMorphology-crash.html

Issue 11192059: Merge 129796 - Rewrite multithreaded filter job dispatching (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1271/
Patch Set: Created 8 years, 2 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 | LayoutTests/svg/filters/feMorphology-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
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <!-- Test for WK97500 - this test passes if it does not crash. --> 3 <!-- Test for WK97500 - this test passes if it does not crash. -->
4 <script> 4 <script>
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 setTimeout(function() { 7 setTimeout(function() {
8 document.write("PASS - This test passes if it did not crash."); 8 document.write("PASS - This test passes if it did not crash.");
9 testRunner.dumpAsText(); 9 testRunner.dumpAsText();
10 testRunner.notifyDone(); 10 testRunner.notifyDone();
11 }, 1); 11 }, 1);
12 } 12 }
13 </script> 13 </script>
14 <svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/sv g" width="300" height="300"> 14 <svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/sv g" width="300" height="300">
15 <defs> 15 <defs>
16 <filter id="erode1" filterUnits="objectBoundingBox" x="0" y="0" width="1 000" height="1000"> 16 <filter id="erode1" filterUnits="objectBoundingBox" x="0" y="0" width="1 000" height="1000">
17 <feMorphology operator="erode" radius="1" width="2000" height="10000 0"/> 17 <feMorphology operator="erode" radius="1" width="2000" height="10000 0"/>
18 </filter> 18 </filter>
19 <g id="morphologySource"> 19 <g id="morphologySource">
20 <rect x="0" y="0" width="2000" height="100000"/> 20 <rect x="0" y="0" width="2000" height="100000"/>
21 </g> 21 </g>
22 </defs> 22 </defs>
23 <use xlink:href="#morphologySource" x="350" y="100" filter="url(#erode1)"/> 23 <use xlink:href="#morphologySource" x="350" y="100" filter="url(#erode1)"/>
24 </svg> 24 </svg>
25 </html> 25 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/filters/feMorphology-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698