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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedInteger-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/SVGAnimatedInteger-expected.txt
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedInteger-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedInteger-expected.txt
deleted file mode 100644
index 946283aa09548dc61e0efaecbb86413662bce262..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedInteger-expected.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-This test checks the SVGAnimatedInteger API - utilizing the targetX property of SVGFEConvolveMatrix
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-
-Check initial targetX value
-PASS feConvolveMatrix.targetX.toString() is "[object SVGAnimatedInteger]"
-PASS typeof(feConvolveMatrix.targetX.baseVal) is "number"
-PASS feConvolveMatrix.targetX.baseVal is 0
-
-Check that integers are static, caching value in a local variable and modifying it, should have no effect
-PASS numRef is 100
-PASS feConvolveMatrix.targetX.baseVal is 0
-
-Check assigning various valid and invalid values
-PASS feConvolveMatrix.targetX.baseVal = -1 is -1
-PASS feConvolveMatrix.targetX.baseVal = 300 is 300
-PASS feConvolveMatrix.targetX.baseVal = 'aString' is 'aString'
-PASS feConvolveMatrix.targetX.baseVal is 0
-PASS feConvolveMatrix.targetX.baseVal = feConvolveMatrix is feConvolveMatrix
-PASS feConvolveMatrix.targetX.baseVal is 0
-PASS feConvolveMatrix.targetX.baseVal = 300 is 300
-
-Check that the targetX value remained 300
-PASS feConvolveMatrix.targetX.baseVal is 300
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698