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

Side by Side Diff: LayoutTests/svg/dom/method-argument-typechecks-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 invalid values 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(0) did not throw exception.
10 FAIL animateElm.beginElementAt(NaN) should throw an exception. Was undefined.
11 FAIL animateElm.beginElementAt(Infinity) should throw an exception. Was undefine d.
12
13 endElementAt(float offset)
14 PASS animateElm.endElementAt(0) did not throw exception.
15 FAIL animateElm.endElementAt(NaN) should throw an exception. Was undefined.
16 FAIL animateElm.endElementAt(Infinity) should throw an exception. Was undefined.
17
18
19 SVGFEDropShadowElement
20
21 setStdDeviation(float stdDeviationX, float stdDeviationY)
22 PASS dropShadow.setStdDeviation(0, 0) did not throw exception.
23 FAIL dropShadow.setStdDeviation(NaN, NaN) should throw an exception. Was undefin ed.
24 FAIL dropShadow.setStdDeviation(Infinity, Infinity) should throw an exception. W as undefined.
25
26
27 SVGFEGaussianBlurElement
28
29 setStdDeviation(float stdDeviationX, float stdDeviationY)
30 PASS gaussian.setStdDeviation(0, 0) did not throw exception.
31 FAIL gaussian.setStdDeviation(NaN, NaN) should throw an exception. Was undefined .
32 FAIL gaussian.setStdDeviation(Infinity, Infinity) should throw an exception. Was undefined.
33 PASS successfullyParsed is true
34
35 TEST COMPLETE
36
OLDNEW
« no previous file with comments | « LayoutTests/svg/dom/method-argument-typechecks.html ('k') | Source/core/svg/SVGAnimationElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698