tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / storage / indexeddb / create-object-store-options.html
index bf600d7..0820727 100755 (executable)
@@ -1,8 +1,6 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
-<script src="../../fast/js/resources/js-test-post-function.js"></script>
 <script src="resources/shared.js"></script>
 </head>
 <body>
@@ -43,7 +41,7 @@ function cleanDatabase()
     debug("db.createObjectStore('c', {autoIncrement: true});");
     db.createObjectStore('c', {autoIncrement: true});
 
-    trans = evalAndLog("trans = db.transaction([], webkitIDBTransaction.READ_WRITE)");
+    trans = evalAndLog("trans = db.transaction(['a', 'b'], webkitIDBTransaction.READ_WRITE)");
     shouldBe("trans.mode", "webkitIDBTransaction.READ_WRITE");
 
     req = evalAndLog("trans.objectStore('a').put({'a': 0})");
@@ -81,7 +79,6 @@ function checkB()
     done();
 }
 
-var successfullyParsed = true;
 
 test();