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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/idbtransaction-objectStore-exception-order.html

Issue 2653923007: Upstream IndexedDB exception ordering tests to WPT. (Closed)
Patch Set: Rebased 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
« no previous file with comments | « third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-query-exception-order.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/storage/indexeddb/idbtransaction-objectStore-exception-order.html
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/idbtransaction-objectStore-exception-order.html b/third_party/WebKit/LayoutTests/storage/indexeddb/idbtransaction-objectStore-exception-order.html
deleted file mode 100644
index 31a9ed92797b79443d305516b8e8d3ae51f35558..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/idbtransaction-objectStore-exception-order.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<title>IndexedDB: IDBTransaction objectStore() Exception Ordering</title>
-<meta charset=utf-8>
-<link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbtransaction-objectstore">
-<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('s');
- },
- (t, db) => {
- const tx = db.transaction('s');
- tx.oncomplete = t.step_func(() => {
- assert_throws('InvalidStateError', () => { tx.objectStore('nope'); },
- '"finished" check (InvalidStateError) should precede ' +
- '"name in scope" check (NotFoundError)');
- t.done();
- });
- },
- 'IDBTransaction.objectStore exception order: InvalidStateError vs. NotFoundError'
-);
-
-</script>
« no previous file with comments | « third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-query-exception-order.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698