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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedAngle-expected.txt

Issue 2705293005: Convert LayoutTests/svg/dom/SVGAnimated*.html js-tests.js to testharness.js based tests. (Closed)
Patch Set: Align with review comments Created 3 years, 10 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/SVGAnimatedAngle-expected.txt
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedAngle-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedAngle-expected.txt
deleted file mode 100644
index bbabbaf40bd8625ba20b4737f9be0e26af17a813..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedAngle-expected.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-This test checks the SVGAnimatedAngle API - utilizing the orientAngle property of SVGMarkerElement
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-
-Check initial orientAngle value
-PASS markerElement.orientAngle.toString() is "[object SVGAnimatedAngle]"
-PASS markerElement.orientAngle.baseVal.toString() is "[object SVGAngle]"
-PASS markerElement.orientAngle.baseVal.value is 0
-
-Check that angles are dynamic, caching value in a local variable and modifying it, should take effect
-PASS numRef.value is 100
-PASS markerElement.orientAngle.baseVal.value is 100
-
-Check that assigning to baseVal has no effect, as no setter is defined
-PASS markerElement.orientAngle.baseVal = -1 is -1
-PASS markerElement.orientAngle.baseVal = 'aString' is "aString"
-PASS markerElement.orientAngle.baseVal = markerElement is markerElement
-
-Check that the orientAngle value remained 100, and the baseVal type has not been changed
-PASS markerElement.orientAngle.baseVal.toString() is "[object SVGAngle]"
-PASS markerElement.orientAngle.baseVal.value is 100
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698