| Index: tests/html/indexeddb_2_test.dart
|
| diff --git a/tests/html/indexeddb_2_test.dart b/tests/html/indexeddb_2_test.dart
|
| index 9a9feac3e08adfe28309495c3870b48672454f4f..03a0fd4a673aff90f8c183e420bc98b2d63fbd6f 100644
|
| --- a/tests/html/indexeddb_2_test.dart
|
| +++ b/tests/html/indexeddb_2_test.dart
|
| @@ -46,6 +46,14 @@ testReadWrite(key, value, check,
|
| });
|
| }
|
|
|
| +List<String> get nonNativeListData {
|
| + var list = new List<String>();
|
| + list.add("data");
|
| + list.add("clone");
|
| + list.add("error");
|
| + list.add("test");
|
| + return list;
|
| +}
|
|
|
| main() {
|
| useHtmlConfiguration();
|
| @@ -93,5 +101,6 @@ main() {
|
| go('array_deferred_copy', [1,2,3, obj3, obj3, 6]);
|
| go('array_deferred_copy_2', [1,2,3, [4, 5, obj3], [obj3, 6]]);
|
| go('cyclic_list', cyclic_list);
|
| + go('non-native lists', nonNativeListData);
|
| }
|
| }
|
|
|