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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/SVGGeometryElement-getPointAtLength-detached.html

Issue 2413753004: Move getTotalLength and getPointAtLength methods from SVGPathElement to SVGGeometryElement. (Closed)
Patch Set: Align with review comments Created 4 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/dom/SVGGeometryElement-getPointAtLength-detached.html
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGGeometryElement-getPointAtLength-detached.html b/third_party/WebKit/LayoutTests/svg/dom/SVGGeometryElement-getPointAtLength-detached.html
new file mode 100644
index 0000000000000000000000000000000000000000..85fbe3a5722258d4ece131ee54e8fe0febd8e3f2
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/dom/SVGGeometryElement-getPointAtLength-detached.html
@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<title>SVGGeometryElement.getPointAtLength method (element detached)</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script>
+test(function() {
+ var pathElement = document.createElementNS("http://www.w3.org/2000/svg", "path");
+
+ function pointAtLength(string) {
+ pathElement.setAttribute("d", string);
+
+ var point = pathElement.getPointAtLength(700);
+ return [Math.round(point.x), Math.round(point.y)];
+ }
+
+ assert_array_equals(pointAtLength('M0,20 L400,20 L640,20'), [640, 20]);
+ assert_array_equals(pointAtLength('M0,20 L400,20 L640,20 z'), [580, 20]);
+ assert_array_equals(pointAtLength('M0,20 L400,20 z M 320,20 L640,20'), [100, 20]);
+ assert_array_equals(pointAtLength('M0,20 L20,40'), [20, 40]);
+}, document.title + " with SVGPathElement");
+
+test(function() {
+ var rectElement = document.createElementNS("http://www.w3.org/2000/svg", "rect");
+
+ function pointAtLength(rx, ry, width, height) {
+ rectElement.setAttribute("rx", rx);
+ rectElement.setAttribute("ry", ry);
+ rectElement.setAttribute("width", width);
+ rectElement.setAttribute("height", height);
+
+ var point = rectElement.getPointAtLength(300);
+ return [Math.round(point.x), Math.round(point.y)];
+ }
+
+ assert_array_equals(pointAtLength(0, 0, 200, 300), [0, 0]);
+ assert_array_equals(pointAtLength(50, 50, 200, 300), [0, 0]);
+}, document.title + " with SVGRectElement");
+
+test(function() {
+ var circleElement = document.createElementNS("http://www.w3.org/2000/svg", "circle");
+
+ function pointAtLength(radius) {
+ circleElement.setAttribute("r", radius);
+
+ var point = circleElement.getPointAtLength(100);
+ return [Math.round(point.x), Math.round(point.y)];
+ }
+
+ assert_array_equals(pointAtLength(10), [0, 0]);
+ assert_array_equals(pointAtLength(100), [0, 0]);
+}, document.title + " with SVGCircleElement");
+</script>

Powered by Google App Engine
This is Rietveld 408576698