| OLD | NEW |
| (Empty) |
| 1 This test checks the SVGAnimatedBoolean API - utilizing the preserveAlpha proper
ty of SVGFEConvolveMatrixElement | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 | |
| 7 Check initial preserveAlpha value | |
| 8 PASS convElement.preserveAlpha.baseVal is false | |
| 9 | |
| 10 Set value to true | |
| 11 PASS convElement.preserveAlpha.baseVal = true is true | |
| 12 | |
| 13 Caching baseVal in local variable | |
| 14 PASS baseVal is true | |
| 15 | |
| 16 Modify local baseVal variable to true | |
| 17 PASS baseVal = false is false | |
| 18 | |
| 19 Assure that convElement.preserveAlpha has not been changed, but the local baseVa
l variable | |
| 20 PASS baseVal is false | |
| 21 PASS convElement.preserveAlpha.baseVal is true | |
| 22 | |
| 23 Check assigning values of various types | |
| 24 PASS convElement.preserveAlpha.baseVal = convElement.preserveAlpha is convElemen
t.preserveAlpha | |
| 25 PASS convElement.preserveAlpha.baseVal is true | |
| 26 PASS convElement.preserveAlpha.baseVal = null is null | |
| 27 PASS convElement.preserveAlpha.baseVal is false | |
| 28 PASS convElement.preserveAlpha.baseVal = 'aString' is 'aString' | |
| 29 PASS convElement.preserveAlpha.baseVal is true | |
| 30 PASS convElement.preserveAlpha.baseVal = convElement is convElement | |
| 31 PASS convElement.preserveAlpha.baseVal is true | |
| 32 PASS successfullyParsed is true | |
| 33 | |
| 34 TEST COMPLETE | |
| 35 | |
| OLD | NEW |