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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-getAll-enforcerange.html

Issue 2664623002: Upstream an assortment of IndexedDB tests to WPT. (Closed)
Patch Set: Rebase MANIFEST.json. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-getAll-enforcerange.html
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-getAll-enforcerange.html b/third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-getAll-enforcerange.html
deleted file mode 100644
index c62f1736519e71231e1c9ea12868b12f5c2494e7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-getAll-enforcerange.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<title>IndexedDB: IDBObjectStore 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');
- },
- (t, db) => {
- const tx = db.transaction('store');
- const store = tx.objectStore('store');
- [NaN, Infinity, -Infinity, -1, -Number.MAX_SAFE_INTEGER].forEach(count => {
- assert_throws(TypeError(), () => { store.getAll(null, count); },
- `getAll with count ${count} count should throw TypeError`);
- });
- t.done();
- },
- `IDBObjectStore.getAll() uses [EnforceRange]`
-);
-</script>

Powered by Google App Engine
This is Rietveld 408576698