Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / inspector / indexeddb / indexeddb-test.js
index 8aa6796..d11aefc 100644 (file)
@@ -52,7 +52,7 @@ InspectorTest._installIndexedDBSniffer = function()
 
     function consoleMessageOverride(msg)
     {
-        var text = msg._messageText;
+        var text = msg.messageText;
         if (!text.startsWith(callbackIdPrefix)) {
             InspectorTest.addConsoleSniffer(consoleMessageOverride, false);
             return;
@@ -100,9 +100,6 @@ InspectorTest.addIDBValue = function(frameId, databaseName, objectStoreName, val
 
 };
 
-var indexedDB = window.indexeddb || window.webkitIndexedDB;
-window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction;
-
 function dispatchCallback(callbackId)
 {
     console.log(callbackId);
@@ -256,4 +253,3 @@ function addIDBValue(callback, databaseName, objectStoreName, value, key)
         request.onsuccess = commitCallback;
     }
 }
-