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

Side by Side Diff: LayoutTests/svg/dom/SVGAnimatedInteger-expected.txt

Issue 1153403003: Remove SVGFilterElement's filterRes* attributes and setFilterRes() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase + updated smallFonts.svg and textFeatures.svg Created 5 years, 6 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
1 This test checks the SVGAnimatedInteger API - utilizing the filterResX property of SVGFilterElement 1 This test checks the SVGAnimatedInteger API - utilizing the targetX property of SVGFEConvolveMatrix
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 6
7 Check initial filterResX value 7 Check initial targetX value
8 PASS filterElement.filterResX.toString() is "[object SVGAnimatedInteger]" 8 PASS feConvolveMatrix.targetX.toString() is "[object SVGAnimatedInteger]"
9 PASS typeof(filterElement.filterResX.baseVal) is "number" 9 PASS typeof(feConvolveMatrix.targetX.baseVal) is "number"
10 PASS filterElement.filterResX.baseVal is 0 10 PASS feConvolveMatrix.targetX.baseVal is 0
11 11
12 Check that integers are static, caching value in a local variable and modifying it, should have no effect 12 Check that integers are static, caching value in a local variable and modifying it, should have no effect
13 PASS numRef is 100 13 PASS numRef is 100
14 PASS filterElement.filterResX.baseVal is 0 14 PASS feConvolveMatrix.targetX.baseVal is 0
15 15
16 Check assigning various valid and invalid values 16 Check assigning various valid and invalid values
17 PASS filterElement.filterResX.baseVal = -1 is -1 17 PASS feConvolveMatrix.targetX.baseVal = -1 is -1
18 PASS filterElement.filterResX.baseVal = 300 is 300 18 PASS feConvolveMatrix.targetX.baseVal = 300 is 300
19 PASS filterElement.filterResX.baseVal = 'aString' is 'aString' 19 PASS feConvolveMatrix.targetX.baseVal = 'aString' is 'aString'
20 PASS filterElement.filterResX.baseVal is 0 20 PASS feConvolveMatrix.targetX.baseVal is 0
21 PASS filterElement.filterResX.baseVal = filterElement is filterElement 21 PASS feConvolveMatrix.targetX.baseVal = feConvolveMatrix is feConvolveMatrix
22 PASS filterElement.filterResX.baseVal is 0 22 PASS feConvolveMatrix.targetX.baseVal is 0
23 PASS filterElement.filterResX.baseVal = 300 is 300 23 PASS feConvolveMatrix.targetX.baseVal = 300 is 300
24 24
25 Check that the filterResX value remained 300 25 Check that the targetX value remained 300
26 PASS filterElement.filterResX.baseVal is 300 26 PASS feConvolveMatrix.targetX.baseVal is 300
27 PASS successfullyParsed is true 27 PASS successfullyParsed is true
28 28
29 TEST COMPLETE 29 TEST COMPLETE
30 30
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/resources-svgdom-invalidation-crash.svg ('k') | LayoutTests/svg/dom/script-tests/SVGAnimatedInteger.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698