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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbindex_getAll.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>IndexedDB: Test IDBIndex.getAll.</title> 2 <title>IndexedDB: Test IDBIndex.getAll.</title>
3 <script src="../../../resources/testharness.js"></script> 3 <script src="../../../resources/testharness.js"></script>
4 <script src="../../../resources/testharnessreport.js"></script> 4 <script src="../../../resources/testharnessreport.js"></script>
5 <script> 5 <script>
6 setup({explicit_done: true}); 6 setup({explicit_done: true});
7 7
8 var alphabet = 'abcdefghijklmnopqrstuvwxyz'.split(''); 8 var alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('');
9 var ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''); 9 var ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('');
10 10
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 assert_true(data.every(function(e) { return e.attribs[0] === 'vowel'; })); 223 assert_true(data.every(function(e) { return e.attribs[0] === 'vowel'; }));
224 t.done(); 224 t.done();
225 }); 225 });
226 }, 'Retrieve one key multiple values'); 226 }, 'Retrieve one key multiple values');
227 227
228 // Explicit done needed in case async_test body fails synchronously. 228 // Explicit done needed in case async_test body fails synchronously.
229 done(); 229 done();
230 }); 230 });
231 231
232 </script> 232 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698