Index: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGTextContentElement-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGTextContentElement-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGTextContentElement-expected.txt |
deleted file mode 100644 |
index 90d674dc1df041426de597cee11433c237788d09..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGTextContentElement-expected.txt |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-This test checks the use of SVGAnimatedEnumeration within SVGTextContentElement |
- |
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
- |
- |
- |
-Check initial 'lengthAdjust' value |
-PASS textContentElement.lengthAdjust.toString() is "[object SVGAnimatedEnumeration]" |
-PASS typeof(textContentElement.lengthAdjust.baseVal) is "number" |
-PASS textContentElement.lengthAdjust.baseVal is SVGTextContentElement.LENGTHADJUST_SPACING |
- |
-Switch to 'spacingAndGlyphs' |
-PASS textContentElement.lengthAdjust.baseVal = SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS is SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS |
-PASS textContentElement.lengthAdjust.baseVal is SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS |
-PASS textContentElement.getAttribute('lengthAdjust') is "spacingAndGlyphs" |
- |
-Try setting invalid values |
-PASS textContentElement.lengthAdjust.baseVal = 3 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (3) is larger than the largest allowed value (2).. |
-PASS textContentElement.lengthAdjust.baseVal is SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS |
-PASS textContentElement.getAttribute('lengthAdjust') is "spacingAndGlyphs" |
-PASS textContentElement.lengthAdjust.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 (2).. |
-PASS textContentElement.lengthAdjust.baseVal is SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS |
-PASS textContentElement.getAttribute('lengthAdjust') is "spacingAndGlyphs" |
-PASS textContentElement.lengthAdjust.baseVal = 0 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided is 0, which is not settable.. |
-PASS textContentElement.lengthAdjust.baseVal is SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS |
-PASS textContentElement.getAttribute('lengthAdjust') is "spacingAndGlyphs" |
- |
-Switch to 'spacing' |
-PASS textContentElement.lengthAdjust.baseVal = SVGTextContentElement.LENGTHADJUST_SPACING is SVGTextContentElement.LENGTHADJUST_SPACING |
-PASS textContentElement.lengthAdjust.baseVal is SVGTextContentElement.LENGTHADJUST_SPACING |
-PASS textContentElement.getAttribute('lengthAdjust') is "spacing" |
-PASS successfullyParsed is true |
- |
-TEST COMPLETE |
- |