Title: [193991] trunk/Source/WebCore
- Revision
- 193991
- Author
- [email protected]
- Date
- 2015-12-11 15:54:30 -0800 (Fri, 11 Dec 2015)
Log Message
Followup to:
Modern IDB: storage/indexeddb/index-count.html fails.
https://bugs.webkit.org/show_bug.cgi?id=152175
Noticed by Darin Adler.
* Modules/indexeddb/client/IDBIndexImpl.cpp:
(WebCore::IDBClient::IDBIndex::count): Replace a curly brace to its proper place.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (193990 => 193991)
--- trunk/Source/WebCore/ChangeLog 2015-12-11 23:52:48 UTC (rev 193990)
+++ trunk/Source/WebCore/ChangeLog 2015-12-11 23:54:30 UTC (rev 193991)
@@ -1,5 +1,16 @@
2015-12-11 Brady Eidson <[email protected]>
+ Followup to:
+ Modern IDB: storage/indexeddb/index-count.html fails.
+ https://bugs.webkit.org/show_bug.cgi?id=152175
+
+ Noticed by Darin Adler.
+
+ * Modules/indexeddb/client/IDBIndexImpl.cpp:
+ (WebCore::IDBClient::IDBIndex::count): Replace a curly brace to its proper place.
+
+2015-12-11 Brady Eidson <[email protected]>
+
Modern IDB: storage/indexeddb/cursor-continue.html fails.
https://bugs.webkit.org/show_bug.cgi?id=152192
Modified: trunk/Source/WebCore/Modules/indexeddb/client/IDBIndexImpl.cpp (193990 => 193991)
--- trunk/Source/WebCore/Modules/indexeddb/client/IDBIndexImpl.cpp 2015-12-11 23:52:48 UTC (rev 193990)
+++ trunk/Source/WebCore/Modules/indexeddb/client/IDBIndexImpl.cpp 2015-12-11 23:54:30 UTC (rev 193991)
@@ -139,7 +139,8 @@
return nullptr;
}
- return doCount(*context, IDBKeyRangeData::allKeys(), ec);}
+ return doCount(*context, IDBKeyRangeData::allKeys(), ec);
+}
RefPtr<WebCore::IDBRequest> IDBIndex::count(ScriptExecutionContext* context, IDBKeyRange* range, ExceptionCodeWithMessage& ec)
{
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes