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

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

Issue 2780443002: SVGStringList update tests. (Closed)
Patch Set: Rebaselining svg/W3C-SVG-1.1-SE/svgdom-over-01-f.svg and win:svg/dom/SVGStringList-basics.xhtml Created 3 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
OLDNEW
1 This test checks the SVGStringList API - utilizing the requiredFeatures property of SVGRectElement 1 This test checks the SVGStringList API - utilizing the requiredExtensions proper ty of SVGRectElement
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 requiredFeatures values 7 Check initial requiredExtensions values
8 PASS rect.requiredFeatures.numberOfItems is 2 8 PASS rect.requiredExtensions.numberOfItems is 2
9 PASS rect.requiredFeatures.getItem(0) is "foo" 9 PASS rect.requiredExtensions.getItem(0) is "foo"
10 PASS rect.requiredFeatures.getItem(1) is "bar" 10 PASS rect.requiredExtensions.getItem(1) is "bar"
11 11
12 Check that getItem() does NOT return live strings, as the IDL defines the return types as plain DOMString 12 Check that getItem() does NOT return live strings, as the IDL defines the return types as plain DOMString
13 PASS firstItem = 'test' is "test" 13 PASS firstItem = 'test' is "test"
14 PASS rect.requiredFeatures.numberOfItems is 2 14 PASS rect.requiredExtensions.numberOfItems is 2
15 PASS rect.requiredFeatures.getItem(0) is "foo" 15 PASS rect.requiredExtensions.getItem(0) is "foo"
16 PASS rect.requiredFeatures.getItem(1) is "bar" 16 PASS rect.requiredExtensions.getItem(1) is "bar"
17 PASS successfullyParsed is true 17 PASS successfullyParsed is true
18 18
19 TEST COMPLETE 19 TEST COMPLETE
20 20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698