Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / storage / indexeddb / object-lookups-in-versionchange.html
blob7fd4af12fb85d884f22cedfc650c20bc6ed065c8
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <script src="resources/shared.js"></script>
4 <script>
6 description("Regression test for http://webkit.org/b/102547");
8 indexedDBTest(prepareDatabase, finishJSTest);
10 function prepareDatabase() {
11 evalAndLog("db = event.target.result");
12 evalAndLog("transaction = event.target.transaction");
13 evalAndLog("store = db.createObjectStore('store')");
14 debug("");
15 evalAndExpectException("transaction.objectStore('no-such-store')", "DOMException.NOT_FOUND_ERR", "'NotFoundError'");
16 debug("");
17 evalAndExpectException("store.index('no-such-index')", "DOMException.NOT_FOUND_ERR", "'NotFoundError'");
20 </script>