| 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>
|
|
|