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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/resources/SVGLengthList-helper.js

Issue 2354503002: Refactor LayoutTests/svg/dom/SVGLengthList*.html (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/dom/SVGLengthList-replaceItem.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 function assert_list(list, expectedValues) {
2 assert_equals(list.numberOfItems, expectedValues.length);
3 for (var index = 0; index < expectedValues.length; ++index)
4 assert_equals(list.getItem(index).value, expectedValues[index]);
5
6 assert_throws("IndexSizeError", function() { list.getItem(expectedValues.lengt h); });
7 }
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/dom/SVGLengthList-replaceItem.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698