Index: LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGFECompositeElement.js |
diff --git a/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGFECompositeElement.js b/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGFECompositeElement.js |
index d57a9cefc802642217029e32eb4a00c593f31d99..e2875d72351a6603a208fdcd77e547737322b469 100644 |
--- a/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGFECompositeElement.js |
+++ b/LayoutTests/svg/dom/script-tests/SVGAnimatedEnumeration-SVGFECompositeElement.js |
@@ -59,4 +59,10 @@ shouldBe("feCompositeElement.operator.baseVal = SVGFECompositeElement.SVG_FECOMP |
shouldBe("feCompositeElement.operator.baseVal", "SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OVER"); |
shouldBeEqualToString("feCompositeElement.getAttribute('operator')", "over"); |
+debug(""); |
+debug("Switch to 'lighter'"); |
+shouldBeUndefined("SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_LIGHTER"); |
+feCompositeElement.setAttribute("operator", "lighter"); |
+shouldBe("feCompositeElement.operator.baseVal", "SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN"); |
+ |
successfullyParsed = true; |