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

Side by Side Diff: LayoutTests/storage/indexeddb/lazy-index-population.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../../fast/js/resources/js-test-pre.js"></script> 2 <script src="../../resources/js-test.js"></script>
3 <script src="resources/shared.js"></script> 3 <script src="resources/shared.js"></script>
4 <script> 4 <script>
5 5
6 description("Verify edge cases that lazy index population in an IndexedDB implem entation might reveal."); 6 description("Verify edge cases that lazy index population in an IndexedDB implem entation might reveal.");
7 7
8 indexedDBTest(prepareDatabase, verifyPreExistingIndex); 8 indexedDBTest(prepareDatabase, verifyPreExistingIndex);
9 function prepareDatabase() 9 function prepareDatabase()
10 { 10 {
11 connection = event.target.result; 11 connection = event.target.result;
12 deleteAllObjectStores(connection); 12 deleteAllObjectStores(connection);
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 trans.oncomplete = unexpectedCompleteCallback; 165 trans.oncomplete = unexpectedCompleteCallback;
166 trans.onabort = function () { 166 trans.onabort = function () {
167 debug("transaction aborted"); 167 debug("transaction aborted");
168 shouldBe("++state", "3"); 168 shouldBe("++state", "3");
169 shouldBe("trans.error.name", "'ConstraintError'"); 169 shouldBe("trans.error.name", "'ConstraintError'");
170 }; 170 };
171 }; 171 };
172 } 172 }
173 173
174 </script> 174 </script>
OLDNEW
« no previous file with comments | « LayoutTests/storage/indexeddb/keyrange.html ('k') | LayoutTests/storage/indexeddb/lazy-index-types.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698