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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore-query-exception-order.html

Issue 2653923007: Upstream IndexedDB exception ordering tests to WPT. (Closed)
Patch Set: Rebased MANIFEST.json Created 3 years, 10 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 <title>IndexedDB: IDBObjectStore query method Ordering</title> 3 <title>IndexedDB: IDBObjectStore query method Ordering</title>
3 <meta charset=utf-8>
4 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-get"> 4 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-get">
5 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getal l"> 5 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getal l">
6 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getal lkeys"> 6 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getal lkeys">
7 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-count "> 7 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-count ">
8 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-openc ursor"> 8 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-openc ursor">
9 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-openk eycursor"> 9 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-openk eycursor">
10 <script src="../../resources/testharness.js"></script> 10 <script src="/resources/testharness.js"></script>
11 <script src="../../resources/testharnessreport.js"></script> 11 <script src="/resources/testharnessreport.js"></script>
12 <script src="resources/testharness-helpers.js"></script> 12 <script src="support.js"></script>
13 <script> 13 <script>
14 14
15 ['get', 15 ['get',
16 'getAll', 16 'getAll',
17 'getAllKeys', 17 'getAllKeys',
18 'count', 18 'count',
19 'openCursor', 19 'openCursor',
20 'openKeyCursor' 20 'openKeyCursor'
21 ].forEach(method => { 21 ].forEach(method => {
22 22
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'query check (DataError)'); 56 'query check (DataError)');
57 t.done(); 57 t.done();
58 }), 0); 58 }), 0);
59 }, 59 },
60 `IDBObjectStore.${method} exception order: ` + 60 `IDBObjectStore.${method} exception order: ` +
61 'TransactionInactiveError vs. DataError' 61 'TransactionInactiveError vs. DataError'
62 ); 62 );
63 }); 63 });
64 64
65 </script> 65 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698