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

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

Issue 2741153003: Convert LayoutTests/svg/dom/*.html js-tests.js to testharness.js based tests. (Closed)
Patch Set: Align with review comments Created 3 years, 9 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/SVGNumber-expected.txt
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGNumber-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGNumber-expected.txt
deleted file mode 100644
index 701260503ef7691b5a1a90f46d496648e0d21132..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGNumber-expected.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-This test checks the SVGNumber API
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-
-Check initial number value
-PASS num.value is 0
-
-Check assigning number
-PASS num.value = 100 is 100
-PASS num.value = -100 is -100
-PASS num.value = 12345678 is 12345678
-PASS num.value = -num.value is -12345678
-
-Check that numbers are static, caching value in a local variable and modifying it, should have no effect
-PASS numRef is 1000
-PASS num.value is -12345678
-
-Check assigning invalid number, number should be 0 afterwards
-PASS num.value = 0 is 0
-PASS num.value = num threw exception TypeError: Failed to set the 'value' property on 'SVGNumber': The provided float value is non-finite..
-PASS num.value = 'aString' threw exception TypeError: Failed to set the 'value' property on 'SVGNumber': The provided float value is non-finite..
-PASS num.value = svgElement threw exception TypeError: Failed to set the 'value' property on 'SVGNumber': The provided float value is non-finite..
-PASS num.value = NaN threw exception TypeError: Failed to set the 'value' property on 'SVGNumber': The provided float value is non-finite..
-PASS num.value = Infinity threw exception TypeError: Failed to set the 'value' property on 'SVGNumber': The provided float value is non-finite..
-PASS num.value is 0
-PASS num.value = null is null
-
-Check that the number is now null
-PASS num.value is 0
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/dom/SVGNumber.html ('k') | third_party/WebKit/LayoutTests/svg/dom/SVGPoint.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698