| Index: third_party/WebKit/LayoutTests/svg/dom/script-tests/path-totalLength.js
 | 
| diff --git a/third_party/WebKit/LayoutTests/svg/dom/script-tests/path-totalLength.js b/third_party/WebKit/LayoutTests/svg/dom/script-tests/path-totalLength.js
 | 
| deleted file mode 100644
 | 
| index ad4623983312982b6921845fffc0b45125b84e96..0000000000000000000000000000000000000000
 | 
| --- a/third_party/WebKit/LayoutTests/svg/dom/script-tests/path-totalLength.js
 | 
| +++ /dev/null
 | 
| @@ -1,16 +0,0 @@
 | 
| -description("This tests getTotalLength of SVG path.");
 | 
| -
 | 
| -var pathElement = document.createElementNS("http://www.w3.org/2000/svg", "path");
 | 
| -
 | 
| -function getTotalLength(string) {
 | 
| -    pathElement.setAttributeNS(null, "d", string);
 | 
| -
 | 
| -    var point = pathElement.getTotalLength();
 | 
| -    return point;
 | 
| -}
 | 
| -
 | 
| -shouldBe("getTotalLength('M0,20 L400,20 L640,20')", "640");
 | 
| -shouldBe("getTotalLength('M0,20 L400,20 L640,20 z')", "1280");
 | 
| -shouldBe("getTotalLength('M0,20 L400,20 z M 320,20 L640,20')", "1120");
 | 
| -
 | 
| -var successfullyParsed = true;
 | 
| 
 |