Index: third_party/WebKit/LayoutTests/svg/dom/svgpath-out-of-bounds-getPathSeg.html |
diff --git a/third_party/WebKit/LayoutTests/svg/dom/svgpath-out-of-bounds-getPathSeg.html b/third_party/WebKit/LayoutTests/svg/dom/svgpath-out-of-bounds-getPathSeg.html |
deleted file mode 100644 |
index 72556925f3d7a1e44de169728a1f3c2d8336410d..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/svg/dom/svgpath-out-of-bounds-getPathSeg.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<p id="description"></p> |
-<div id="console"></div> |
-<script> |
- description("Tests that an exception is thrown if we try to get a pathSeg for a length out of the bounds of the path itself."); |
- path = document.createElementNS("http://www.w3.org/2000/svg", "path"); |
- shouldThrow("path.pathSegList.initialize();"); |
- shouldBe("path.getPathSegAtLength(0)", '0'); |
- shouldThrow("path.insertItemBefore(null, 0)"); |
- shouldThrow("path.replaceItem(null, 0)"); |
- shouldThrow("path.appendItem(null)"); |
- path.pathSegList.initialize(path.createSVGPathSegClosePath()); |
- debug("List correctly initialised."); |
- shouldBe("path.getPathSegAtLength(0)", '0'); |
- shouldThrow("path.insertItemBefore(null, 0)"); |
- shouldThrow("path.replaceItem(null, 0)"); |
- shouldThrow("path.appendItem(null)"); |
- |
-</script> |
-</body> |
-</html> |