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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGTextPathElement.js

Issue 2447633002: Convert LayoutTests/svg/dom/SVGAnimatedEnumeration*.html js-tests.js to testharness.js based tests. (Closed)
Patch Set: 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/script-tests/SVGAnimatedEnumeration-SVGTextPathElement.js
diff --git a/third_party/WebKit/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGTextPathElement.js b/third_party/WebKit/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGTextPathElement.js
deleted file mode 100644
index e00cddb14ea7aa255dbbe9c2baaadb928358cd6d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGTextPathElement.js
+++ /dev/null
@@ -1,73 +0,0 @@
-description("This test checks the use of SVGAnimatedEnumeration within SVGTextPathElement");
-
-var textPathElement = document.createElementNS("http://www.w3.org/2000/svg", "textPath");
-textPathElement.setAttribute("method", "align");
-textPathElement.setAttribute("spacing", "auto");
-
-// method
-debug("");
-debug("Check initial 'method' value");
-shouldBeEqualToString("textPathElement.method.toString()", "[object SVGAnimatedEnumeration]");
-shouldBeEqualToString("typeof(textPathElement.method.baseVal)", "number");
-shouldBe("textPathElement.method.baseVal", "SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN");
-
-debug("");
-debug("Switch to 'stretch'");
-shouldBe("textPathElement.method.baseVal = SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH", "SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH");
-shouldBe("textPathElement.method.baseVal", "SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH");
-shouldBeEqualToString("textPathElement.getAttribute('method')", "stretch");
-
-debug("");
-debug("Try setting invalid values");
-shouldThrow("textPathElement.method.baseVal = 3");
-shouldBe("textPathElement.method.baseVal", "SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH");
-shouldBeEqualToString("textPathElement.getAttribute('method')", "stretch");
-
-shouldThrow("textPathElement.method.baseVal = -1");
-shouldBe("textPathElement.method.baseVal", "SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH");
-shouldBeEqualToString("textPathElement.getAttribute('method')", "stretch");
-
-shouldThrow("textPathElement.method.baseVal = 0");
-shouldBe("textPathElement.method.baseVal", "SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH");
-shouldBeEqualToString("textPathElement.getAttribute('method')", "stretch");
-
-debug("");
-debug("Switch to 'align'");
-shouldBe("textPathElement.method.baseVal = SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN", "SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN");
-shouldBe("textPathElement.method.baseVal", "SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN");
-shouldBeEqualToString("textPathElement.getAttribute('method')", "align");
-
-// spacing
-debug("");
-debug("Check initial 'spacing' value");
-shouldBeEqualToString("textPathElement.spacing.toString()", "[object SVGAnimatedEnumeration]");
-shouldBeEqualToString("typeof(textPathElement.spacing.baseVal)", "number");
-shouldBe("textPathElement.spacing.baseVal", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_AUTO");
-
-debug("");
-debug("Switch to 'exact'");
-shouldBe("textPathElement.spacing.baseVal = SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT");
-shouldBe("textPathElement.spacing.baseVal", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT");
-shouldBeEqualToString("textPathElement.getAttribute('spacing')", "exact");
-
-debug("");
-debug("Try setting invalid values");
-shouldThrow("textPathElement.spacing.baseVal = 3");
-shouldBe("textPathElement.spacing.baseVal", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT");
-shouldBeEqualToString("textPathElement.getAttribute('spacing')", "exact");
-
-shouldThrow("textPathElement.spacing.baseVal = -1");
-shouldBe("textPathElement.spacing.baseVal", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT");
-shouldBeEqualToString("textPathElement.getAttribute('spacing')", "exact");
-
-shouldThrow("textPathElement.spacing.baseVal = 0");
-shouldBe("textPathElement.spacing.baseVal", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT");
-shouldBeEqualToString("textPathElement.getAttribute('spacing')", "exact");
-
-debug("");
-debug("Switch to 'auto'");
-shouldBe("textPathElement.spacing.baseVal = SVGTextPathElement.TEXTPATH_SPACINGTYPE_AUTO", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_AUTO");
-shouldBe("textPathElement.spacing.baseVal", "SVGTextPathElement.TEXTPATH_SPACINGTYPE_AUTO");
-shouldBeEqualToString("textPathElement.getAttribute('spacing')", "auto");
-
-successfullyParsed = true;

Powered by Google App Engine
This is Rietveld 408576698