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

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/svg-curve-with-relative-cordinates.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/svg-curve-with-relative-cordinates.html
diff --git a/third_party/WebKit/LayoutTests/svg/custom/svg-curve-with-relative-cordinates.html b/third_party/WebKit/LayoutTests/svg/custom/svg-curve-with-relative-cordinates.html
deleted file mode 100644
index a8d3347448b9d5296fd5edf17a92212cadb7cc8a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/custom/svg-curve-with-relative-cordinates.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<html>
-<head>
-<script type="text/javascript">
-function setup() {
- var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
- var viewBox = svg.viewBox.baseVal;
- viewBox.x = -5;
- viewBox.y = 0;
- viewBox.width = 40;
- viewBox.height = 35;
- svg.width.baseVal.valueAsString = "400px";
- svg.height.baseVal.valueAsString = "400px";
- var path = document.createElementNS("http://www.w3.org/2000/svg", "path");
- path.style.setProperty("stroke", "black", "");
- path.style.setProperty("fill", "red", "");
- var segs = path.pathSegList;
- segs.appendItem(path.createSVGPathSegMovetoAbs(14.86487, 27.54341));
- segs.appendItem(path.createSVGPathSegCurvetoCubicAbs(2.16163, 16.27388, 10.93614, 23.44857, 5.53039, 20.93069));
- segs.appendItem(path.createSVGPathSegCurvetoCubicAbs(0.40252, 6.50142, 0.19540, 13.47135, -0.27051, 9.80295));
- segs.appendItem(path.createSVGPathSegCurvetoCubicAbs(8.61522, 0.38648, 1.50231, 3.03806, 4.88027, 0.20151));
- segs.appendItem(path.createSVGPathSegCurvetoCubicAbs(15.54304, 4.44105, 11.49036, 0.13255, 14.15935, 2.02987));
- segs.appendItem(path.createSVGPathSegCurvetoCubicRel(0.71868, 1.07327, 0.37594, 0.23175, 0.35941, 2.21266));
- segs.appendItem(path.createSVGPathSegCurvetoCubicAbs(23.25811, 0.39544, 17.31181, 2.60470, 20.15524, 0.48976));
- segs.appendItem(path.createSVGPathSegCurvetoCubicAbs(31.97687, 7.41380, 27.37183, 0.07861, 31.56253, 3.22656));
- segs.appendItem(path.createSVGPathSegCurvetoCubicRel(-2.04024, 9.10060, 0.46508, 3.14678, -0.04068, 6.54082));
- segs.appendItem(path.createSVGPathSegCurvetoCubicRel(-10.90462, 9.53931, -2.92245, 3.93336, -7.42165, 6.18284));
- segs.appendItem(path.createSVGPathSegCurvetoCubicRel(-3.12799, 2.94243, -1.08820, 0.79363, -2.28426, 2.46524));
- segs.appendItem(path.createSVGPathSegCurvetoCubicRel(-1.03915, -1.45272, -0.28088, -0.52741, -0.64130, -1.00829));
- segs.appendItem(path.createSVGPathSegClosePath());
- svg.appendChild(path);
- var drawing = document.getElementById("drawing");
- drawing.appendChild(svg);
-}
-</script>
-</head>
-<body onload="setup()">
-<p>Here is an html paragraph. And below is a svg drawing</p>
-<div id="drawing"/>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698