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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/filters/feMorphology-crash.html
diff --git a/LayoutTests/svg/filters/feMorphology-crash.html b/LayoutTests/svg/filters/feMorphology-crash.html
deleted file mode 100644
index d4e546d129fdfa95d3ebe9de2eeed8d96ee57250..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/filters/feMorphology-crash.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<!-- Test for WK97500 - this test passes if it does not crash. -->
-<script>
- if (window.testRunner) {
- testRunner.waitUntilDone();
- setTimeout(function() {
- document.write("PASS - This test passes if it did not crash.");
- testRunner.dumpAsText();
- testRunner.notifyDone();
- }, 1);
- }
-</script>
-<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" width="300" height="300">
- <defs>
- <filter id="erode1" filterUnits="objectBoundingBox" x="0" y="0" width="1000" height="1000">
- <feMorphology operator="erode" radius="1" width="2000" height="100000"/>
- </filter>
- <g id="morphologySource">
- <rect x="0" y="0" width="2000" height="100000"/>
- </g>
- </defs>
- <use xlink:href="#morphologySource" x="350" y="100" filter="url(#erode1)"/>
-</svg>
-</html>

Powered by Google App Engine
This is Rietveld 408576698