| OLD | NEW |
| 1 This test checks the use of SVGAnimatedEnumeration within SVGFECompositeElement | 1 This test checks the use of SVGAnimatedEnumeration within SVGFECompositeElement |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 | 6 |
| 7 Check initial 'operator' value | 7 Check initial 'operator' value |
| 8 PASS feCompositeElement.operator.toString() is "[object SVGAnimatedEnumeration]" | 8 PASS feCompositeElement.operator.toString() is "[object SVGAnimatedEnumeration]" |
| 9 PASS typeof(feCompositeElement.operator.baseVal) is "number" | 9 PASS typeof(feCompositeElement.operator.baseVal) is "number" |
| 10 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_OVER | 10 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_OVER |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_ARITHMETIC | 42 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_ARITHMETIC |
| 43 PASS feCompositeElement.getAttribute('operator') is "arithmetic" | 43 PASS feCompositeElement.getAttribute('operator') is "arithmetic" |
| 44 PASS feCompositeElement.operator.baseVal = 0 threw exception TypeError: Failed t
o set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value
provided is 0, which is not settable.. | 44 PASS feCompositeElement.operator.baseVal = 0 threw exception TypeError: Failed t
o set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value
provided is 0, which is not settable.. |
| 45 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_ARITHMETIC | 45 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_ARITHMETIC |
| 46 PASS feCompositeElement.getAttribute('operator') is "arithmetic" | 46 PASS feCompositeElement.getAttribute('operator') is "arithmetic" |
| 47 | 47 |
| 48 Switch to 'over' | 48 Switch to 'over' |
| 49 PASS feCompositeElement.operator.baseVal = SVGFECompositeElement.SVG_FECOMPOSITE
_OPERATOR_OVER is SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OVER | 49 PASS feCompositeElement.operator.baseVal = SVGFECompositeElement.SVG_FECOMPOSITE
_OPERATOR_OVER is SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OVER |
| 50 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_OVER | 50 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_OVER |
| 51 PASS feCompositeElement.getAttribute('operator') is "over" | 51 PASS feCompositeElement.getAttribute('operator') is "over" |
| 52 |
| 53 Switch to 'lighter' |
| 54 PASS SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_LIGHTER is undefined. |
| 55 PASS feCompositeElement.operator.baseVal is SVGFECompositeElement.SVG_FECOMPOSIT
E_OPERATOR_UNKNOWN |
| 52 PASS successfullyParsed is true | 56 PASS successfullyParsed is true |
| 53 | 57 |
| 54 TEST COMPLETE | 58 TEST COMPLETE |
| 55 | 59 |
| OLD | NEW |