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 |
- |