| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openKeyCursor4.htm
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openKeyCursor4.htm b/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openKeyCursor4.htm
|
| deleted file mode 100644
|
| index f569be29b6358cd294083e1d771883fdca46c99b..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbindex_openKeyCursor4.htm
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<meta charset="utf-8">
|
| -<title>IDBIndex.openKeyCursor() - throw InvalidStateError on index deleted by aborted upgrade</title>
|
| -<link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbindex-openkeycursor">
|
| -<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" });
|
| -
|
| - e.target.transaction.abort();
|
| -
|
| - assert_throws("InvalidStateError", function(){
|
| - index.openKeyCursor();
|
| - });
|
| - t.done();
|
| - }
|
| -</script>
|
|
|