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

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

Issue 231143002: Iron out some kinks in SVG IDL files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add tests; Drop feMorphology change. Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 Check that incorrect number of arguments throw TypeError.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 SVGAnimationElement
7
8 beginElementAt(float offset)
9 PASS animateElm.beginElementAt() threw exception TypeError: Failed to execute 'b eginElementAt' on 'SVGAnimationElement': 1 argument required, but only 0 present ..
10 PASS animateElm.beginElementAt(0) did not throw exception.
11
12 endElementAt(float offset)
13 PASS animateElm.endElementAt() threw exception TypeError: Failed to execute 'end ElementAt' on 'SVGAnimationElement': 1 argument required, but only 0 present..
14 PASS animateElm.endElementAt(0) did not throw exception.
15
16
17 SVGElementInstanceList
18
19 item(unsigned long index)
20 PASS useElm.instanceRoot.childNodes.item() threw exception TypeError: Failed to execute 'item' on 'SVGElementInstanceList': 1 argument required, but only 0 pres ent..
21 PASS useElm.instanceRoot.childNodes.item(0) did not throw exception.
22
23
24 SVGFEDropShadowElement
25
26 setStdDeviation(float stdDeviationX, float stdDeviationY)
27 PASS dropShadow.setStdDeviation() threw exception TypeError: Failed to execute ' setStdDeviation' on 'SVGFEDropShadowElement': 2 arguments required, but only 0 p resent..
28 PASS dropShadow.setStdDeviation(0) threw exception TypeError: Failed to execute 'setStdDeviation' on 'SVGFEDropShadowElement': 2 arguments required, but only 1 present..
29 PASS dropShadow.setStdDeviation(0, 0) did not throw exception.
30
31
32 SVGFEGaussianBlurElement
33
34 setStdDeviation(float stdDeviationX, float stdDeviationY)
35 PASS gaussian.setStdDeviation() threw exception TypeError: Failed to execute 'se tStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 0 p resent..
36 PASS gaussian.setStdDeviation(0) threw exception TypeError: Failed to execute 's etStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 1 present..
37 PASS gaussian.setStdDeviation(0, 0) did not throw exception.
38
39
40 SVGTests
41
42 hasExtension(DOMString extension)
43 PASS rect.hasExtension() threw exception TypeError: Failed to execute 'hasExtens ion' on 'SVGGraphicsElement': 1 argument required, but only 0 present..
44 PASS rect.hasExtension("foo") did not throw exception.
45 PASS successfullyParsed is true
46
47 TEST COMPLETE
48
OLDNEW
« no previous file with comments | « LayoutTests/svg/dom/method-argument-aritychecks.html ('k') | LayoutTests/svg/dom/method-argument-typechecks.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698