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

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

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 1 month 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <!-- Test for WK97500 - this test passes if it does not crash. -->
4 <script>
5 if (window.testRunner) {
6 testRunner.waitUntilDone();
7 setTimeout(function() {
8 document.write("PASS - This test passes if it did not crash.");
9 testRunner.dumpAsText();
10 testRunner.notifyDone();
11 }, 1);
12 }
13 </script>
14 <svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/sv g" width="300" height="300">
15 <defs>
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"/>
18 </filter>
19 <g id="morphologySource">
20 <rect x="0" y="0" width="2000" height="100000"/>
21 </g>
22 </defs>
23 <use xlink:href="#morphologySource" x="350" y="100" filter="url(#erode1)"/>
24 </svg>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698