Index: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEConvolveMatrixElement-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEConvolveMatrixElement-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEConvolveMatrixElement-expected.txt |
deleted file mode 100644 |
index fa1a7e683139fb9db683a63be9e05d8d82153226..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEConvolveMatrixElement-expected.txt |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-This test checks the use of SVGAnimatedEnumeration within SVGFEConvolveMatrixElement |
- |
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
- |
- |
- |
-Check initial 'edgeMode' value |
-PASS feConvolveMatrixElement.edgeMode.toString() is "[object SVGAnimatedEnumeration]" |
-PASS typeof(feConvolveMatrixElement.edgeMode.baseVal) is "number" |
-PASS feConvolveMatrixElement.edgeMode.baseVal is SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE |
- |
-Switch to 'wrap' |
-PASS feConvolveMatrixElement.edgeMode.baseVal = SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP is SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP |
-PASS feConvolveMatrixElement.edgeMode.baseVal is SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP |
-PASS feConvolveMatrixElement.getAttribute('edgeMode') is "wrap" |
- |
-Switch to 'none' |
-PASS feConvolveMatrixElement.edgeMode.baseVal = SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE is SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE |
-PASS feConvolveMatrixElement.edgeMode.baseVal is SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE |
-PASS feConvolveMatrixElement.getAttribute('edgeMode') is "none" |
- |
-Try setting invalid values |
-PASS feConvolveMatrixElement.edgeMode.baseVal = 4 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (4) is larger than the largest allowed value (3).. |
-PASS feConvolveMatrixElement.edgeMode.baseVal is SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE |
-PASS feConvolveMatrixElement.getAttribute('edgeMode') is "none" |
-PASS feConvolveMatrixElement.edgeMode.baseVal = -1 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (65535) is larger than the largest allowed value (3).. |
-PASS feConvolveMatrixElement.edgeMode.baseVal is SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE |
-PASS feConvolveMatrixElement.getAttribute('edgeMode') is "none" |
-PASS feConvolveMatrixElement.edgeMode.baseVal = 0 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided is 0, which is not settable.. |
-PASS feConvolveMatrixElement.edgeMode.baseVal is SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE |
-PASS feConvolveMatrixElement.getAttribute('edgeMode') is "none" |
- |
-Switch to 'duplicate' |
-PASS feConvolveMatrixElement.edgeMode.baseVal = SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE is SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE |
-PASS feConvolveMatrixElement.edgeMode.baseVal is SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE |
-PASS feConvolveMatrixElement.getAttribute('edgeMode') is "duplicate" |
-PASS successfullyParsed is true |
- |
-TEST COMPLETE |
- |