Index: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFilterElement-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFilterElement-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFilterElement-expected.txt |
deleted file mode 100644 |
index 8f3b02c764b17d9e76f2d5fe4e584fed6744d38e..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFilterElement-expected.txt |
+++ /dev/null |
@@ -1,61 +0,0 @@ |
-This test checks the use of SVGAnimatedEnumeration within SVGFilterElement |
- |
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
- |
- |
- |
-Check initial 'filterUnits' value |
-PASS filterElement.filterUnits.toString() is "[object SVGAnimatedEnumeration]" |
-PASS typeof(filterElement.filterUnits.baseVal) is "number" |
-PASS filterElement.filterUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE |
- |
-Switch to 'objectBoundingBox' |
-PASS filterElement.filterUnits.baseVal = SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.filterUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('filterUnits') is "objectBoundingBox" |
- |
-Try setting invalid values |
-PASS filterElement.filterUnits.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 filterElement.filterUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('filterUnits') is "objectBoundingBox" |
-PASS filterElement.filterUnits.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 filterElement.filterUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('filterUnits') is "objectBoundingBox" |
-PASS filterElement.filterUnits.baseVal = 0 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided is 0, which is not settable.. |
-PASS filterElement.filterUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('filterUnits') is "objectBoundingBox" |
- |
-Switch to 'userSpaceOnUse' |
-PASS filterElement.filterUnits.baseVal = SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE is SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE |
-PASS filterElement.filterUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE |
-PASS filterElement.getAttribute('filterUnits') is "userSpaceOnUse" |
- |
-Check initial 'primitiveUnits' value |
-PASS filterElement.primitiveUnits.toString() is "[object SVGAnimatedEnumeration]" |
-PASS typeof(filterElement.primitiveUnits.baseVal) is "number" |
-PASS filterElement.primitiveUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE |
- |
-Switch to 'objectBoundingBox' |
-PASS filterElement.primitiveUnits.baseVal = SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.primitiveUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('primitiveUnits') is "objectBoundingBox" |
- |
-Try setting invalid values |
-PASS filterElement.primitiveUnits.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 filterElement.primitiveUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('primitiveUnits') is "objectBoundingBox" |
-PASS filterElement.primitiveUnits.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 filterElement.primitiveUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('primitiveUnits') is "objectBoundingBox" |
-PASS filterElement.primitiveUnits.baseVal = 0 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided is 0, which is not settable.. |
-PASS filterElement.primitiveUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX |
-PASS filterElement.getAttribute('primitiveUnits') is "objectBoundingBox" |
- |
-Switch to 'userSpaceOnUse' |
-PASS filterElement.primitiveUnits.baseVal = SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE is SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE |
-PASS filterElement.primitiveUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE |
-PASS filterElement.getAttribute('primitiveUnits') is "userSpaceOnUse" |
-PASS successfullyParsed is true |
- |
-TEST COMPLETE |
- |