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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/method-argument-aritychecks-expected.txt

Issue 2256013003: Remove SMIL deprecation warning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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.
2 Check that incorrect number of arguments throw TypeError. 1 Check that incorrect number of arguments throw TypeError.
3 2
4 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 ".
5 4
6 5
7 SVGAnimationElement 6 SVGAnimationElement
8 7
9 beginElementAt(float offset) 8 beginElementAt(float offset)
10 PASS animateElm.beginElementAt() threw exception TypeError: Failed to execute 'b eginElementAt' on 'SVGAnimationElement': 1 argument required, but only 0 present .. 9 PASS animateElm.beginElementAt() threw exception TypeError: Failed to execute 'b eginElementAt' on 'SVGAnimationElement': 1 argument required, but only 0 present ..
11 PASS animateElm.beginElementAt(0) did not throw exception. 10 PASS animateElm.beginElementAt(0) did not throw exception.
(...skipping 14 matching lines...) Expand all
26 SVGFEGaussianBlurElement 25 SVGFEGaussianBlurElement
27 26
28 setStdDeviation(float stdDeviationX, float stdDeviationY) 27 setStdDeviation(float stdDeviationX, float stdDeviationY)
29 PASS gaussian.setStdDeviation() threw exception TypeError: Failed to execute 'se tStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 0 p resent.. 28 PASS gaussian.setStdDeviation() threw exception TypeError: Failed to execute 'se tStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 0 p resent..
30 PASS gaussian.setStdDeviation(0) threw exception TypeError: Failed to execute 's etStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 1 present.. 29 PASS gaussian.setStdDeviation(0) threw exception TypeError: Failed to execute 's etStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 1 present..
31 PASS gaussian.setStdDeviation(0, 0) did not throw exception. 30 PASS gaussian.setStdDeviation(0, 0) did not throw exception.
32 PASS successfullyParsed is true 31 PASS successfullyParsed is true
33 32
34 TEST COMPLETE 33 TEST COMPLETE
35 34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698