Chromium Code Reviews

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-segment-modification.svg

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/dom/SVGPathSegList-segment-modification.svg
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-segment-modification.svg b/third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-segment-modification.svg
deleted file mode 100644
index ffd86e86f8d55aca37c6cee44a55862dae3833d5..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGPathSegList-segment-modification.svg
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink='http://www.w3.org/1999/xlink' width="300px" height="300px" viewBox="0 0 300 300" onload="runRepaintAndPixelTest()">
- <script xlink:href="../../fast/repaint/resources/text-based-repaint.js" type="text/javascript"></script>
- <script type="text/javascript">
- function repaintTest() {
- var smile = document.getElementById('smile');
- var segList = smile.pathSegList;
- var moveSeg = segList.getItem(0); // This represents the M 80 40 segment (Move to)
- moveSeg.x = 50;
- moveSeg.y = 50;
- }
- </script>
- <path id="smile" d="M 80 40 S 120 80 160 40" stroke="black" stroke-width="3" fill="none"/>
- <g transform="translate(0 50)">
- <path d="M 50 50 S 120 80 160 40" stroke="black" stroke-width="3" fill="none"/>
- </g>
- <text x="10" y="20">Both shapes should look identical</text>
-</svg>

Powered by Google App Engine