| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbdatabase_deleteObjectStore3.htm
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbdatabase_deleteObjectStore3.htm b/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbdatabase_deleteObjectStore3.htm
|
| deleted file mode 100644
|
| index 0497c169e59af13214a7069ecdff6905bb932954..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/idbdatabase_deleteObjectStore3.htm
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<title>IDBDatabase.deleteObjectStore() - attempt to remove an object store that does not exist </title>
|
| -<link rel="author" title="Microsoft" href="http://www.microsoft.com">
|
| -<script src="../../../resources/testharness.js"></script>
|
| -<script src="../../../resources/testharnessreport.js"></script>
|
| -<script src="support.js"></script>
|
| -
|
| -<script>
|
| -
|
| -var t = async_test(),
|
| - open_rq = createdb(t);
|
| -
|
| -open_rq.onupgradeneeded = function(e)
|
| -{
|
| - var db = e.target.result;
|
| - assert_throws('NotFoundError',
|
| - function() { db.deleteObjectStore('whatever'); });
|
| - t.done();
|
| -}
|
| -
|
| -</script>
|
| -
|
| -<div id="log"></div>
|
|
|