OLD | NEW |
| 1 CONSOLE WARNING: SVG's SMIL animations (<animate>, <set>, etc.) are deprecated a
nd will be removed. Please use CSS animations or Web animations instead. |
1 Check that invalid values of arguments throw TypeError. | 2 Check that invalid values of arguments throw TypeError. |
2 | 3 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 5 |
5 | 6 |
6 SVGAnimationElement | 7 SVGAnimationElement |
7 | 8 |
8 beginElementAt(float offset) | 9 beginElementAt(float offset) |
9 PASS animateElm.beginElementAt(0) did not throw exception. | 10 PASS animateElm.beginElementAt(0) did not throw exception. |
10 PASS animateElm.beginElementAt(NaN) threw exception TypeError: Failed to execute
'beginElementAt' on 'SVGAnimationElement': The provided float value is non-fini
te.. | 11 PASS animateElm.beginElementAt(NaN) threw exception TypeError: Failed to execute
'beginElementAt' on 'SVGAnimationElement': The provided float value is non-fini
te.. |
(...skipping 20 matching lines...) Expand all Loading... |
31 setStdDeviation(float stdDeviationX, float stdDeviationY) | 32 setStdDeviation(float stdDeviationX, float stdDeviationY) |
32 PASS gaussian.setStdDeviation(0, 0) did not throw exception. | 33 PASS gaussian.setStdDeviation(0, 0) did not throw exception. |
33 PASS gaussian.setStdDeviation(NaN, 1) threw exception TypeError: Failed to execu
te 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float value is
non-finite.. | 34 PASS gaussian.setStdDeviation(NaN, 1) threw exception TypeError: Failed to execu
te 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float value is
non-finite.. |
34 PASS gaussian.setStdDeviation(Infinity, 1) threw exception TypeError: Failed to
execute 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float valu
e is non-finite.. | 35 PASS gaussian.setStdDeviation(Infinity, 1) threw exception TypeError: Failed to
execute 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float valu
e is non-finite.. |
35 PASS gaussian.setStdDeviation(1, NaN) threw exception TypeError: Failed to execu
te 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float value is
non-finite.. | 36 PASS gaussian.setStdDeviation(1, NaN) threw exception TypeError: Failed to execu
te 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float value is
non-finite.. |
36 PASS gaussian.setStdDeviation(1, Infinity) threw exception TypeError: Failed to
execute 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float valu
e is non-finite.. | 37 PASS gaussian.setStdDeviation(1, Infinity) threw exception TypeError: Failed to
execute 'setStdDeviation' on 'SVGFEGaussianBlurElement': The provided float valu
e is non-finite.. |
37 PASS successfullyParsed is true | 38 PASS successfullyParsed is true |
38 | 39 |
39 TEST COMPLETE | 40 TEST COMPLETE |
40 | 41 |
OLD | NEW |