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

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

Issue 2705293005: Convert LayoutTests/svg/dom/SVGAnimated*.html js-tests.js to testharness.js based tests. (Closed)
Patch Set: Align with review comments Created 3 years, 10 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 SVGAnimatedBoolean API - utilizing the preserveAlpha proper ty of SVGFEConvolveMatrixElement
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6
7 Check initial preserveAlpha value
8 PASS convElement.preserveAlpha.baseVal is false
9
10 Set value to true
11 PASS convElement.preserveAlpha.baseVal = true is true
12
13 Caching baseVal in local variable
14 PASS baseVal is true
15
16 Modify local baseVal variable to true
17 PASS baseVal = false is false
18
19 Assure that convElement.preserveAlpha has not been changed, but the local baseVa l variable
20 PASS baseVal is false
21 PASS convElement.preserveAlpha.baseVal is true
22
23 Check assigning values of various types
24 PASS convElement.preserveAlpha.baseVal = convElement.preserveAlpha is convElemen t.preserveAlpha
25 PASS convElement.preserveAlpha.baseVal is true
26 PASS convElement.preserveAlpha.baseVal = null is null
27 PASS convElement.preserveAlpha.baseVal is false
28 PASS convElement.preserveAlpha.baseVal = 'aString' is 'aString'
29 PASS convElement.preserveAlpha.baseVal is true
30 PASS convElement.preserveAlpha.baseVal = convElement is convElement
31 PASS convElement.preserveAlpha.baseVal is true
32 PASS successfullyParsed is true
33
34 TEST COMPLETE
35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698