Title: [106911] trunk
Revision
106911
Author
vse...@chromium.org
Date
2012-02-07 00:16:09 -0800 (Tue, 07 Feb 2012)

Log Message

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.

Source/WebCore:

* inspector/InspectorIndexedDBAgent.cpp:
(WebCore):

LayoutTests:

* platform/chromium/test_expectations.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (106910 => 106911)


--- trunk/LayoutTests/ChangeLog	2012-02-07 08:09:09 UTC (rev 106910)
+++ trunk/LayoutTests/ChangeLog	2012-02-07 08:16:09 UTC (rev 106911)
@@ -1,3 +1,12 @@
+2012-02-03  Vsevolod Vlasov  <vse...@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  <aba...@webkit.org>
 
         http/tests/security/xssAuditor/cookie-injection.html is flaky

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (106910 => 106911)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-02-07 08:09:09 UTC (rev 106910)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-02-07 08:16:09 UTC (rev 106911)
@@ -4005,8 +4005,6 @@
 
 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

Modified: trunk/Source/WebCore/ChangeLog (106910 => 106911)


--- trunk/Source/WebCore/ChangeLog	2012-02-07 08:09:09 UTC (rev 106910)
+++ trunk/Source/WebCore/ChangeLog	2012-02-07 08:16:09 UTC (rev 106911)
@@ -1,3 +1,13 @@
+2012-02-03  Vsevolod Vlasov  <vse...@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  <hay...@chromium.org>
 
         Fix build on Mac with '--shadow-dom'.

Modified: trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp (106910 => 106911)


--- trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp	2012-02-07 08:09:09 UTC (rev 106910)
+++ trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp	2012-02-07 08:16:09 UTC (rev 106911)
@@ -172,7 +172,7 @@
 
 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<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<IDBIndexBackendInterface> indexForObjectStore(IDBObjectStoreBackendInterface* idbObjectStore, const String& indexName)
 {
-    ExceptionCode ec;
+    ExceptionCode ec = 0;
     RefPtr<IDBIndexBackendInterface> idbIndex = idbObjectStore->index(indexName, ec);
     if (ec)
         return 0;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to