Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openCursor.htm |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openCursor.htm b/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openCursor.htm |
deleted file mode 100644 |
index 97e65adc2eb3e2dbfc94d5c29e4dc1bdffb31f43..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openCursor.htm |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-<!DOCTYPE html> |
-<meta charset="utf-8"> |
-<title>IDBIndex.openCursor() - throw InvalidStateError when the index is deleted</title> |
-<link rel="author" title="Intel" href="http://www.intel.com"> |
-<link rel="help" href="https://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#widl-IDBIndex-openCursor-IDBRequest-any-range-IDBCursorDirection-direction"> |
-<script src=../../../resources/testharness.js></script> |
-<script src=../../../resources/testharnessreport.js></script> |
-<script src=support.js></script> |
-<div id="log"></div> |
-<script> |
- var db, |
- t = async_test(); |
- |
- var open_rq = createdb(t); |
- open_rq.onupgradeneeded = function(e) { |
- db = e.target.result; |
- var store = db.createObjectStore("store", { keyPath: "key" }); |
- var index = store.createIndex("index", "indexedProperty"); |
- |
- store.add({ key: 1, indexedProperty: "data" }); |
- store.deleteIndex("index"); |
- |
- assert_throws("InvalidStateError", function(){ |
- index.openCursor(); |
- }); |
- t.done(); |
- } |
-</script> |
- |