| Index: third_party/WebKit/LayoutTests/storage/indexeddb/idbindex-getAll-enforcerange.html
|
| diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/idbindex-getAll-enforcerange.html b/third_party/WebKit/LayoutTests/storage/indexeddb/idbindex-getAll-enforcerange.html
|
| deleted file mode 100644
|
| index 358c716fc6ea851ebe9d2391671567c729389375..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/storage/indexeddb/idbindex-getAll-enforcerange.html
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<title>IndexedDB: IDBIndex getAll() uses [EnforceRange]</title>
|
| -<meta charset=utf-8>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<script src="resources/testharness-helpers.js"></script>
|
| -<script>
|
| -
|
| -indexeddb_test(
|
| - (t, db) => {
|
| - const store = db.createObjectStore('store');
|
| - const index = store.createIndex('index', 'keyPath');
|
| - },
|
| - (t, db) => {
|
| - const tx = db.transaction('store');
|
| - const store = tx.objectStore('store');
|
| - const index = store.index('index');
|
| - [NaN, Infinity, -Infinity, -1, -Number.MAX_SAFE_INTEGER].forEach(count => {
|
| - assert_throws(TypeError(), () => { index.getAll(null, count); },
|
| - `getAll with count ${count} count should throw TypeError`);
|
| - });
|
| - t.done();
|
| - },
|
| - `IDBIndex.getAll() uses [EnforceRange]`
|
| -);
|
| -</script>
|
|
|