Title: [194800] trunk
Revision
194800
Author
beid...@apple.com
Date
2016-01-08 15:41:56 -0800 (Fri, 08 Jan 2016)

Log Message

Modern IDB: imported/w3c/indexeddb/keyorder.htm times out.
https://bugs.webkit.org/show_bug.cgi?id=152929

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (Existing test now runs in the test harness).

* Modules/indexeddb/client/IDBCursorImpl.cpp:
(WebCore::IDBClient::IDBCursor::setGetResult):

LayoutTests:

* platform/mac-wk1/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (194799 => 194800)


--- trunk/LayoutTests/ChangeLog	2016-01-08 23:36:16 UTC (rev 194799)
+++ trunk/LayoutTests/ChangeLog	2016-01-08 23:41:56 UTC (rev 194800)
@@ -1,3 +1,12 @@
+2016-01-08  Brady Eidson  <beid...@apple.com>
+
+        Modern IDB: imported/w3c/indexeddb/keyorder.htm times out.
+        https://bugs.webkit.org/show_bug.cgi?id=152929
+
+        Reviewed by Alex Christensen.
+
+        * platform/mac-wk1/TestExpectations:
+
 2016-01-08  Ryan Haddad  <ryanhad...@apple.com>
 
         Marking two css3/filters/composited-during-* tests as failing on ios-simulator.

Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (194799 => 194800)


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2016-01-08 23:36:16 UTC (rev 194799)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2016-01-08 23:41:56 UTC (rev 194800)
@@ -68,7 +68,6 @@
 
 # W3C IDB test timeouts
 imported/w3c/indexeddb/interfaces.html [ Skip ]
-imported/w3c/indexeddb/keyorder.htm [ Skip ]
 
 # W3C IDB tests where the test is wrong (the spec, other browsers, and WebKit all agree)
 # Covered by https://github.com/w3c/web-platform-tests/issues/2456

Modified: trunk/Source/WebCore/ChangeLog (194799 => 194800)


--- trunk/Source/WebCore/ChangeLog	2016-01-08 23:36:16 UTC (rev 194799)
+++ trunk/Source/WebCore/ChangeLog	2016-01-08 23:41:56 UTC (rev 194800)
@@ -1,3 +1,15 @@
+2016-01-08  Brady Eidson  <beid...@apple.com>
+
+        Modern IDB: imported/w3c/indexeddb/keyorder.htm times out.
+        https://bugs.webkit.org/show_bug.cgi?id=152929
+
+        Reviewed by Alex Christensen.
+
+        No new tests (Existing test now runs in the test harness).
+
+        * Modules/indexeddb/client/IDBCursorImpl.cpp:
+        (WebCore::IDBClient::IDBCursor::setGetResult):
+
 2016-01-08  Simon Fraser  <simon.fra...@apple.com>
 
         Consider painting to be disabled on a GraphicsContext with no platform data, and make updatingControlTints() immutable state

Modified: trunk/Source/WebCore/Modules/indexeddb/client/IDBCursorImpl.cpp (194799 => 194800)


--- trunk/Source/WebCore/Modules/indexeddb/client/IDBCursorImpl.cpp	2016-01-08 23:36:16 UTC (rev 194799)
+++ trunk/Source/WebCore/Modules/indexeddb/client/IDBCursorImpl.cpp	2016-01-08 23:41:56 UTC (rev 194800)
@@ -329,7 +329,7 @@
 
 void IDBCursor::setGetResult(IDBRequest& request, const IDBGetResult& getResult)
 {
-    LOG(IndexedDB, "IDBCursor::setGetResult - current key %s", getResult.keyData().loggingString().utf8().data());
+    LOG(IndexedDB, "IDBCursor::setGetResult - current key %s", getResult.keyData().loggingString().substring(0, 100).utf8().data());
 
     auto* context = request.scriptExecutionContext();
     if (!context)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to