| Index: third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-crash.html b/third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-crash.html
|
| deleted file mode 100644
|
| index 9269391fc4b182180e35d3657f23cc2b003e86c4..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-crash.html
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| - <body>
|
| - <script>
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| - var path = document.createElementNS("http://www.w3.org/2000/svg", "path");
|
| - var seg1 = path.createSVGPathSegLinetoAbs(10, 10);
|
| - var seg2 = path.createSVGPathSegLinetoAbs(100, 100);
|
| -
|
| - path.pathSegList.initialize(seg1);
|
| - path.pathSegList.initialize(seg2);
|
| - path.pathSegList.initialize(seg1);
|
| - path.pathSegList.replaceItem(seg2, 0);
|
| - path.pathSegList.initialize(seg1);
|
| - </script>
|
| - </body>
|
| - <div>PASS: Did not crash.</div>
|
| -</html>
|
|
|