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

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

Issue 1359053004: Remove SVG hasExtension() methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 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. 2 Check that incorrect number of arguments throw TypeError.
3 3
4 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 ".
5 5
6 6
7 SVGAnimationElement 7 SVGAnimationElement
8 8
9 beginElementAt(float offset) 9 beginElementAt(float offset)
10 PASS animateElm.beginElementAt() threw exception TypeError: Failed to execute 'b eginElementAt' on 'SVGAnimationElement': 1 argument required, but only 0 present .. 10 PASS animateElm.beginElementAt() threw exception TypeError: Failed to execute 'b eginElementAt' on 'SVGAnimationElement': 1 argument required, but only 0 present ..
(...skipping 11 matching lines...) Expand all
22 PASS dropShadow.setStdDeviation(0) threw exception TypeError: Failed to execute 'setStdDeviation' on 'SVGFEDropShadowElement': 2 arguments required, but only 1 present.. 22 PASS dropShadow.setStdDeviation(0) threw exception TypeError: Failed to execute 'setStdDeviation' on 'SVGFEDropShadowElement': 2 arguments required, but only 1 present..
23 PASS dropShadow.setStdDeviation(0, 0) did not throw exception. 23 PASS dropShadow.setStdDeviation(0, 0) did not throw exception.
24 24
25 25
26 SVGFEGaussianBlurElement 26 SVGFEGaussianBlurElement
27 27
28 setStdDeviation(float stdDeviationX, float stdDeviationY) 28 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.. 29 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.. 30 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. 31 PASS gaussian.setStdDeviation(0, 0) did not throw exception.
32
33
34 SVGTests
35
36 hasExtension(DOMString extension)
37 PASS rect.hasExtension() threw exception TypeError: Failed to execute 'hasExtens ion' on 'SVGGraphicsElement': 1 argument required, but only 0 present..
38 PASS rect.hasExtension("foo") did not throw exception.
39 PASS successfullyParsed is true 32 PASS successfullyParsed is true
40 33
41 TEST COMPLETE 34 TEST COMPLETE
42 35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698