| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!doctype html> |
| 2 <meta charset=utf-8> |
| 2 <title>IndexedDB: IDBIndex query method Ordering</title> | 3 <title>IndexedDB: IDBIndex query method Ordering</title> |
| 3 <meta charset=utf-8> | |
| 4 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-get"> | 4 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-get"> |
| 5 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-getall"> | 5 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-getall"> |
| 6 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-getallkeys"
> | 6 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-getallkeys"
> |
| 7 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-count"> | 7 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-count"> |
| 8 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-opencursor"
> | 8 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-opencursor"
> |
| 9 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-openkeycurs
or"> | 9 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-openkeycurs
or"> |
| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'query check (DataError)'); | 58 'query check (DataError)'); |
| 59 t.done(); | 59 t.done(); |
| 60 }), 0); | 60 }), 0); |
| 61 }, | 61 }, |
| 62 `IDBIndex.${method} exception order: ` + | 62 `IDBIndex.${method} exception order: ` + |
| 63 'TransactionInactiveError vs. DataError' | 63 'TransactionInactiveError vs. DataError' |
| 64 ); | 64 ); |
| 65 }); | 65 }); |
| 66 | 66 |
| 67 </script> | 67 </script> |
| OLD | NEW |