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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/name-scopes.html

Issue 2614953003: Import wpt@eeecf3e14368d4ab5221cde688003dedeca30dba (Closed)
Patch Set: Created 3 years, 11 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 <meta charset="utf-8"> 2 <meta charset="utf-8">
3 <title> 3 <title>
4 IndexedDB: scoping for database / object store / index names, and index keys 4 IndexedDB: scoping for database / object store / index names, and index keys
5 </title> 5 </title>
6 <link rel="help" href="https://w3c.github.io/IndexedDB/#constructs"> 6 <link rel="help" href="https://w3c.github.io/IndexedDB/#constructs">
7 <link rel="author" href="pwnall@chromium.org" title="Victor Costan"> 7 <link rel="author" href="pwnall@chromium.org" title="Victor Costan">
8 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharness.js"></script>
9 <script src="/resources/testharnessreport.js"></script> 9 <script src="/resources/testharnessreport.js"></script>
10 <script src="support-promises.js"></script> 10 <script src="support-promises.js"></script>
11 <script> 11 <script>
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 return buildDatabases(testCase, true) 125 return buildDatabases(testCase, true)
126 .then(() => openNamedDatabase(testCase, 'x', 1)) 126 .then(() => openNamedDatabase(testCase, 'x', 1))
127 .then(database => checkDatabaseContent(testCase, database, 'x', true)) 127 .then(database => checkDatabaseContent(testCase, database, 'x', true))
128 .then(database => database.close()) 128 .then(database => database.close())
129 .then(() => openNamedDatabase(testCase, 'y', 1)) 129 .then(() => openNamedDatabase(testCase, 'y', 1))
130 .then(database => checkDatabaseContent(testCase, database, 'y', true)) 130 .then(database => checkDatabaseContent(testCase, database, 'y', true))
131 .then(database => database.close()); 131 .then(database => database.close());
132 }, 'Unique index keys'); 132 }, 'Unique index keys');
133 133
134 </script> 134 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698