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

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

Issue 2713833002: Convert LayoutTests/svg/dom/SVGAnimated*.html js-tests.js to testharness.js based tests. (Closed)
Patch Set: 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/SVGAnimatedNumber-expected.txt
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedNumber-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedNumber-expected.txt
deleted file mode 100644
index 8add6f1e027c57bfda434b8b93c07f0c91dd21c0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedNumber-expected.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-This test checks the SVGAnimatedNumber API - utilizing the surfaceScale property of SVGFESpecularLightingElement
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-
-Check initial surfaceScale value
-PASS feSpecularLightingElement.surfaceScale.toString() is "[object SVGAnimatedNumber]"
-PASS typeof(feSpecularLightingElement.surfaceScale.baseVal) is "number"
-PASS feSpecularLightingElement.surfaceScale.baseVal is 1
-
-Check that integers are static, caching value in a local variable and modifying it, should have no effect
-PASS numRef is 100
-PASS feSpecularLightingElement.surfaceScale.baseVal is 1
-
-Check assigning various valid and invalid values
-PASS feSpecularLightingElement.surfaceScale.baseVal = -1 is -1
-PASS feSpecularLightingElement.surfaceScale.baseVal = 300 is 300
-PASS feSpecularLightingElement.surfaceScale.baseVal = 'aString' threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedNumber': The provided float value is non-finite..
-PASS feSpecularLightingElement.surfaceScale.baseVal is 300
-PASS feSpecularLightingElement.surfaceScale.baseVal = 0 is 0
-PASS feSpecularLightingElement.surfaceScale.baseVal = NaN threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedNumber': The provided float value is non-finite..
-PASS feSpecularLightingElement.surfaceScale.baseVal is 0
-PASS feSpecularLightingElement.surfaceScale.baseVal = Infinity threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedNumber': The provided float value is non-finite..
-PASS feSpecularLightingElement.surfaceScale.baseVal is 0
-PASS feSpecularLightingElement.surfaceScale.baseVal = feSpecularLightingElement threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedNumber': The provided float value is non-finite..
-PASS feSpecularLightingElement.surfaceScale.baseVal is 0
-PASS feSpecularLightingElement.surfaceScale.baseVal = 300 is 300
-
-Check that the surfaceScale value remained 300
-PASS feSpecularLightingElement.surfaceScale.baseVal is 300
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698