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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEMorphologyElement-expected.txt

Issue 2416163002: Convert LayoutTests/svg/dom/SVGAnimatedEnumeration*.html js-tests.js to testharness.js based tests. (Closed)
Patch Set: Created 4 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
(Empty)
1 This test checks the use of SVGAnimatedEnumeration within SVGFEMorphologyElement
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6
7 Check initial 'operator' value
8 PASS feMorphologyElement.operator.toString() is "[object SVGAnimatedEnumeration] "
9 PASS typeof(feMorphologyElement.operator.baseVal) is "number"
10 PASS feMorphologyElement.operator.baseVal is SVGFEMorphologyElement.SVG_MORPHOLO GY_OPERATOR_ERODE
11
12 Switch to 'dilate'
13 PASS feMorphologyElement.operator.baseVal = SVGFEMorphologyElement.SVG_MORPHOLOG Y_OPERATOR_DILATE is SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE
14 PASS feMorphologyElement.operator.baseVal is SVGFEMorphologyElement.SVG_MORPHOLO GY_OPERATOR_DILATE
15 PASS feMorphologyElement.getAttribute('operator') is "dilate"
16
17 Try setting invalid values
18 PASS feMorphologyElement.operator.baseVal = 4 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (4) is larger than the largest allowed value (2)..
19 PASS feMorphologyElement.operator.baseVal is SVGFEMorphologyElement.SVG_MORPHOLO GY_OPERATOR_DILATE
20 PASS feMorphologyElement.getAttribute('operator') is "dilate"
21 PASS feMorphologyElement.operator.baseVal = -1 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration valu e provided (65535) is larger than the largest allowed value (2)..
22 PASS feMorphologyElement.operator.baseVal is SVGFEMorphologyElement.SVG_MORPHOLO GY_OPERATOR_DILATE
23 PASS feMorphologyElement.getAttribute('operator') is "dilate"
24 PASS feMorphologyElement.operator.baseVal = 0 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided is 0, which is not settable..
25 PASS feMorphologyElement.operator.baseVal is SVGFEMorphologyElement.SVG_MORPHOLO GY_OPERATOR_DILATE
26 PASS feMorphologyElement.getAttribute('operator') is "dilate"
27
28 Switch to 'erode'
29 PASS feMorphologyElement.operator.baseVal = SVGFEMorphologyElement.SVG_MORPHOLOG Y_OPERATOR_ERODE is SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE
30 PASS feMorphologyElement.operator.baseVal is SVGFEMorphologyElement.SVG_MORPHOLO GY_OPERATOR_ERODE
31 PASS feMorphologyElement.getAttribute('operator') is "erode"
32 PASS successfullyParsed is true
33
34 TEST COMPLETE
35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698