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

Unified Diff: LayoutTests/svg/custom/stale-resource-data-crash.svg

Issue 183703003: Remove more testRunner.display() calls from LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ditch fast/text/font-initial changes too Created 6 years, 10 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/custom/stale-resource-data-crash.svg
diff --git a/LayoutTests/svg/custom/stale-resource-data-crash.svg b/LayoutTests/svg/custom/stale-resource-data-crash.svg
deleted file mode 100644
index 52c70cda820147bdc4604e78c40c9c34b6c535a7..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/custom/stale-resource-data-crash.svg
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg id="svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
- <defs id="defs">
- <filter id="f1">
- <feDiffuseLighting>
- <feDistantLight azimuth="45" id="light"/>
- </feDiffuseLighting>
- </filter>
- <filter id="f2"/>
- </defs>
- <image id="img" filter="url(#f1)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAADUlEQVQY02NgGAWkAwABNgABGtWNFwAAAABJRU5ErkJggg=="/>
-
- <text>PASS: did not crash.</text>
-
- <script>
- f2 = document.getElementById('f2');
- docElement = document.getElementById('svg');
- light = document.getElementById('light');
- newDefs = document.getElementById('defs').cloneNode(true);
-
- if (window.testRunner) {
- testRunner.dumpAsText();
- // Force a paint at this point to generate cached filter results.
- testRunner.display();
- }
-
- docElement.appendChild(newDefs);
- docElement.appendChild(f2);
- docElement.offsetTop;
- light.removeAttribute('azimuth');
- </script>
-</svg>
« no previous file with comments | « LayoutTests/svg/custom/non-scaling-stroke-update.svg ('k') | LayoutTests/transitions/position-background-transition.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698