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

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/path-segment-initial-role.html

Issue 1416273002: Remove SVGPathElement.pathSegList and related interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 2 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: third_party/WebKit/LayoutTests/svg/custom/path-segment-initial-role.html
diff --git a/third_party/WebKit/LayoutTests/svg/custom/path-segment-initial-role.html b/third_party/WebKit/LayoutTests/svg/custom/path-segment-initial-role.html
deleted file mode 100644
index c00ff9db507208fb71570e4d65bc0b377949ffe9..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/custom/path-segment-initial-role.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
- <body>
- <script src="../../resources/js-test.js"></script>
- <script>
- var pathElement = document.createElementNS("http://www.w3.org/2000/svg","path");
-
- var pathSegment = pathElement.createSVGPathSegCurvetoCubicAbs(0.0, 1.0, 2.0, 3.0, 4.0, 5.0);
- pathSegment.x1 = -1.0;
-
- shouldBe('pathSegment.x1', '-1.0');
- </script>
- <p id="description">Test that there is no assertion when setting values on a new path segment not in any segment list.</p>
- <div id="console"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698