http/tests/inspector/indexeddb/database-structure.html failing on chromium win/linux
authorvsevik@chromium.org <vsevik@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 7 Feb 2012 08:16:09 +0000 (08:16 +0000)
committervsevik@chromium.org <vsevik@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 7 Feb 2012 08:16:09 +0000 (08:16 +0000)
https://bugs.webkit.org/show_bug.cgi?id=77661

Reviewed by Yury Semikhatsky.

Source/WebCore:

* inspector/InspectorIndexedDBAgent.cpp:
(WebCore):

LayoutTests:

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106911 268f45cc-cd09-0410-ab3c-d52691b4dbfc

LayoutTests/ChangeLog
LayoutTests/platform/chromium/test_expectations.txt
Source/WebCore/ChangeLog
Source/WebCore/inspector/InspectorIndexedDBAgent.cpp

index d43a6f1..39fc6df 100644 (file)
@@ -1,3 +1,12 @@
+2012-02-03  Vsevolod Vlasov  <vsevik@chromium.org>
+
+        http/tests/inspector/indexeddb/database-structure.html failing on chromium win/linux
+        https://bugs.webkit.org/show_bug.cgi?id=77661
+
+        Reviewed by Yury Semikhatsky.
+
+        * platform/chromium/test_expectations.txt:
+
 2012-02-06  Adam Barth  <abarth@webkit.org>
 
         http/tests/security/xssAuditor/cookie-injection.html is flaky
index ff0135d..2815996 100644 (file)
@@ -4005,8 +4005,6 @@ BUGWK77531 WIN LINUX : media/controls-drag-timebar.html = PASS TIMEOUT
 
 BUGWK77534 LINUX : plugins/createScriptableObject-before-start.html = PASS MISSING
 
-BUGWK77661 WIN LINUX : http/tests/inspector/indexeddb/database-structure.html = TEXT
-
 // Hitting ASSERT_NOT_REACHED in EventHandler::handleTouchEvent() as of r106554.
 BUGWK77620 DEBUG : fast/events/touch/touch-target.html = CRASH
 BUGWK77620 DEBUG : fast/events/touch/touch-coords-in-zoom-and-scroll.html = CRASH
index d2ce0f3..bbbfa61 100644 (file)
@@ -1,3 +1,13 @@
+2012-02-03  Vsevolod Vlasov  <vsevik@chromium.org>
+
+        http/tests/inspector/indexeddb/database-structure.html failing on chromium win/linux
+        https://bugs.webkit.org/show_bug.cgi?id=77661
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/InspectorIndexedDBAgent.cpp:
+        (WebCore):
+
 2012-02-07  Hayato Ito  <hayato@chromium.org>
 
         Fix build on Mac with '--shadow-dom'.
index 9f029d6..b005259 100644 (file)
@@ -172,7 +172,7 @@ void ExecutableWithDatabase::start(IDBFactoryBackendInterface* idbFactory, Secur
 
 static PassRefPtr<IDBTransactionBackendInterface> transactionForDatabase(IDBDatabaseBackendInterface* idbDatabase, const String& objectStoreName)
 {
-    ExceptionCode ec;
+    ExceptionCode ec = 0;
     RefPtr<DOMStringList> transactionObjectStoreNamesList = DOMStringList::create();
     transactionObjectStoreNamesList->append(objectStoreName);
     RefPtr<IDBTransactionBackendInterface> idbTransaction = idbDatabase->transaction(transactionObjectStoreNamesList.get(), IDBTransaction::READ_ONLY, ec);
@@ -183,7 +183,7 @@ static PassRefPtr<IDBTransactionBackendInterface> transactionForDatabase(IDBData
 
 static PassRefPtr<IDBObjectStoreBackendInterface> objectStoreForTransaction(IDBTransactionBackendInterface* idbTransaction, const String& objectStoreName)
 {
-    ExceptionCode ec;
+    ExceptionCode ec = 0;
     RefPtr<IDBObjectStoreBackendInterface> idbObjectStore = idbTransaction->objectStore(objectStoreName, ec);
     if (ec)
         return 0;
@@ -192,7 +192,7 @@ static PassRefPtr<IDBObjectStoreBackendInterface> objectStoreForTransaction(IDBT
 
 static PassRefPtr<IDBIndexBackendInterface> indexForObjectStore(IDBObjectStoreBackendInterface* idbObjectStore, const String& indexName)
 {
-    ExceptionCode ec;
+    ExceptionCode ec = 0;
     RefPtr<IDBIndexBackendInterface> idbIndex = idbObjectStore->index(indexName, ec);
     if (ec)
         return 0;