Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: LayoutTests/svg/dom/method-argument-typechecks-expected.txt

Issue 1158563006: Add SMIL deprecation warning (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698