Chromium Code Reviews

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/use-pathseglist-change.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.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/LayoutTests/svg/custom/use-pathseglist-change.html
diff --git a/third_party/WebKit/LayoutTests/svg/custom/use-pathseglist-change.html b/third_party/WebKit/LayoutTests/svg/custom/use-pathseglist-change.html
deleted file mode 100644
index d97b80673d98a4e4fa9b646341c3a250168fd859..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/custom/use-pathseglist-change.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE HTML>
-<script>
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-window.onload = function() {
- document.getElementById("path").pathSegList[2].y = 200;
- requestAnimationFrame(function() {
- if (window.testRunner)
- testRunner.notifyDone();
- });
-};
-</script>
-<svg height="200" width="300">
- <path id="path" d="M50,50 L100,50 L100,100 Z" style="fill:green;"/>
- <use xlink:href="#path" x="100"/>
-</svg>

Powered by Google App Engine