Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / svg / dom / method-argument-aritychecks-expected.txt
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 'beginElementAt' 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 'endElementAt' on 'SVGAnimationElement': 1 argument required, but only 0 present..
14 PASS animateElm.endElementAt(0) did not throw exception.
15
16
17 SVGFEDropShadowElement
18
19 setStdDeviation(float stdDeviationX, float stdDeviationY)
20 PASS dropShadow.setStdDeviation() threw exception TypeError: Failed to execute 'setStdDeviation' on 'SVGFEDropShadowElement': 2 arguments required, but only 0 present..
21 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, 0) did not throw exception.
23
24
25 SVGFEGaussianBlurElement
26
27 setStdDeviation(float stdDeviationX, float stdDeviationY)
28 PASS gaussian.setStdDeviation() threw exception TypeError: Failed to execute 'setStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 0 present..
29 PASS gaussian.setStdDeviation(0) threw exception TypeError: Failed to execute 'setStdDeviation' on 'SVGFEGaussianBlurElement': 2 arguments required, but only 1 present..
30 PASS gaussian.setStdDeviation(0, 0) did not throw exception.
31
32
33 SVGTests
34
35 hasExtension(DOMString extension)
36 PASS rect.hasExtension() threw exception TypeError: Failed to execute 'hasExtension' on 'SVGGraphicsElement': 1 argument required, but only 0 present..
37 PASS rect.hasExtension("foo") did not throw exception.
38 PASS successfullyParsed is true
39
40 TEST COMPLETE
41