Title: [193433] trunk
Revision
193433
Author
beid...@apple.com
Date
2015-12-04 12:15:14 -0800 (Fri, 04 Dec 2015)

Log Message

Modern IDB: storage/indexeddb/cursor-update.html fails.
https://bugs.webkit.org/show_bug.cgi?id=151879

Reviewed by Oliver Hunt.

Source/WebCore:

No new tests (At least one failing test now passes).

* Modules/indexeddb/client/IDBRequestImpl.cpp:
(WebCore::IDBClient::IDBRequest::IDBRequest):

LayoutTests:

* platform/mac-wk1/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (193432 => 193433)


--- trunk/LayoutTests/ChangeLog	2015-12-04 19:53:05 UTC (rev 193432)
+++ trunk/LayoutTests/ChangeLog	2015-12-04 20:15:14 UTC (rev 193433)
@@ -1,5 +1,14 @@
 2015-12-04  Brady Eidson  <beid...@apple.com>
 
+        Modern IDB: storage/indexeddb/cursor-update.html fails.
+        https://bugs.webkit.org/show_bug.cgi?id=151879
+
+        Reviewed by Oliver Hunt.
+
+        * platform/mac-wk1/TestExpectations:
+
+2015-12-04  Brady Eidson  <beid...@apple.com>
+
         Modern IDB: storage/indexeddb/version-change-exclusive.html fails
         https://bugs.webkit.org/show_bug.cgi?id=151870
 

Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (193432 => 193433)


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2015-12-04 19:53:05 UTC (rev 193432)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2015-12-04 20:15:14 UTC (rev 193433)
@@ -82,6 +82,7 @@
 storage/indexeddb/cursor-index-delete.html [ Pass ]
 storage/indexeddb/cursor-overloads.html [ Pass ]
 storage/indexeddb/cursor-skip-deleted.html [ Pass ]
+storage/indexeddb/cursor-update.html [ Pass ]
 storage/indexeddb/events.html [ Pass ]
 storage/indexeddb/exceptions.html [ Pass ]
 storage/indexeddb/modern [ Pass ]

Modified: trunk/Source/WebCore/ChangeLog (193432 => 193433)


--- trunk/Source/WebCore/ChangeLog	2015-12-04 19:53:05 UTC (rev 193432)
+++ trunk/Source/WebCore/ChangeLog	2015-12-04 20:15:14 UTC (rev 193433)
@@ -1,5 +1,17 @@
 2015-12-04  Brady Eidson  <beid...@apple.com>
 
+        Modern IDB: storage/indexeddb/cursor-update.html fails.
+        https://bugs.webkit.org/show_bug.cgi?id=151879
+
+        Reviewed by Oliver Hunt.
+
+        No new tests (At least one failing test now passes).
+
+        * Modules/indexeddb/client/IDBRequestImpl.cpp:
+        (WebCore::IDBClient::IDBRequest::IDBRequest):
+
+2015-12-04  Brady Eidson  <beid...@apple.com>
+
         Modern IDB: storage/indexeddb/version-change-exclusive.html fails
         https://bugs.webkit.org/show_bug.cgi?id=151870
 

Modified: trunk/Source/WebCore/Modules/indexeddb/client/IDBRequestImpl.cpp (193432 => 193433)


--- trunk/Source/WebCore/Modules/indexeddb/client/IDBRequestImpl.cpp	2015-12-04 19:53:05 UTC (rev 193432)
+++ trunk/Source/WebCore/Modules/indexeddb/client/IDBRequestImpl.cpp	2015-12-04 20:15:14 UTC (rev 193433)
@@ -87,7 +87,7 @@
     , m_transaction(&transaction)
     , m_connection(transaction.serverConnection())
     , m_resourceIdentifier(transaction.serverConnection())
-    , m_source(IDBAny::create(cursor))
+    , m_source(cursor.source())
     , m_pendingCursor(&cursor)
 {
     suspendIfNeeded();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to