Title: [192752] trunk
Revision
192752
Author
beid...@apple.com
Date
2015-11-23 15:12:03 -0800 (Mon, 23 Nov 2015)

Log Message

Modern IDB: Unskip all indexeddb/mozilla tests that pass.
https://bugs.webkit.org/show_bug.cgi?id=151568
Source/WebCore:

Reviewed by Alex Christensen.

No new tests (Lots of skipped existing tests now pass).

* Modules/indexeddb/shared/IDBError.h:

LayoutTests:

Reviewed by Alex Christensen.

* platform/mac-wk1/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (192751 => 192752)


--- trunk/LayoutTests/ChangeLog	2015-11-23 22:10:05 UTC (rev 192751)
+++ trunk/LayoutTests/ChangeLog	2015-11-23 23:12:03 UTC (rev 192752)
@@ -1,5 +1,14 @@
 2015-11-23  Brady Eidson  <beid...@apple.com>
 
+        Modern IDB: Unskip all indexeddb/mozilla tests that pass.
+        https://bugs.webkit.org/show_bug.cgi?id=151568
+
+        Reviewed by Alex Christensen.
+
+        * platform/mac-wk1/TestExpectations:
+
+2015-11-23  Brady Eidson  <beid...@apple.com>
+
         Modern IDB: When a transaction is aborted, call onerror handlers for all in-progress requests.
         https://bugs.webkit.org/show_bug.cgi?id=151550
 

Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (192751 => 192752)


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2015-11-23 22:10:05 UTC (rev 192751)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2015-11-23 23:12:03 UTC (rev 192752)
@@ -72,7 +72,32 @@
 
 # But Modern IndexedDB is.
 storage/indexeddb/modern [ Pass ]
+storage/indexeddb/mozilla/add-twice-failure.html [ Pass ]
+storage/indexeddb/mozilla/bad-keypath.html [ Pass ]
+storage/indexeddb/mozilla/create-index-unique.html [ Pass ]
+storage/indexeddb/mozilla/create-index-with-integer-keys.html [ Pass ]
+storage/indexeddb/mozilla/create-objectstore-basics.html [ Pass ]
+storage/indexeddb/mozilla/create-objectstore-null-name.html [ Pass ]
+storage/indexeddb/mozilla/delete-result.html [ Pass ]
+storage/indexeddb/mozilla/event-source.html [ Pass ]
 storage/indexeddb/mozilla/global-data.html [ Pass ]
+storage/indexeddb/mozilla/key-requirements-delete-null-key.html [ Pass ]
+storage/indexeddb/mozilla/key-requirements-inline-and-passed.html [ Pass ]
+storage/indexeddb/mozilla/key-requirements-put-no-key.html [ Pass ]
+storage/indexeddb/mozilla/key-requirements-put-null-key.html [ Pass ]
+storage/indexeddb/mozilla/key-requirements.html [ Pass ]
+storage/indexeddb/mozilla/object-cursors.html [ Pass ]
+storage/indexeddb/mozilla/object-identity.html [ Pass ]
+storage/indexeddb/mozilla/object-store-remove-values.html [ Pass ]
+storage/indexeddb/mozilla/objectstorenames.html [ Pass ]
+storage/indexeddb/mozilla/odd-result-order.html [ Pass ]
+storage/indexeddb/mozilla/open-database-null-name.html [ Pass ]
+storage/indexeddb/mozilla/put-get-values.html [ Pass ]
+storage/indexeddb/mozilla/readonly-transactions.html [ Pass ]
+storage/indexeddb/mozilla/readwrite-transactions.html [ Pass ]
+storage/indexeddb/mozilla/readyState.html [ Pass ]
+storage/indexeddb/mozilla/remove-index.html [ Pass ]
+storage/indexeddb/mozilla/versionchange-abort.html [ Pass ]
 
 # Fails with WebKit1 only.
 editing/secure-input/reset-state-on-navigation.html [ Failure ]

Modified: trunk/Source/WebCore/ChangeLog (192751 => 192752)


--- trunk/Source/WebCore/ChangeLog	2015-11-23 22:10:05 UTC (rev 192751)
+++ trunk/Source/WebCore/ChangeLog	2015-11-23 23:12:03 UTC (rev 192752)
@@ -1,3 +1,14 @@
+2015-11-23  Brady Eidson  <beid...@apple.com>
+
+        Modern IDB: Unskip all indexeddb/mozilla tests that pass.
+        https://bugs.webkit.org/show_bug.cgi?id=151568
+        
+        Reviewed by Alex Christensen.
+
+        No new tests (Lots of skipped existing tests now pass).
+
+        * Modules/indexeddb/shared/IDBError.h:
+
 2015-11-23  Nikos Andronikos <nikos.andronikos-web...@cisra.canon.com.au>
 
         Add WebCore namespace for generated bindings for supplemental method calls

Modified: trunk/Source/WebCore/Modules/indexeddb/shared/IDBError.h (192751 => 192752)


--- trunk/Source/WebCore/Modules/indexeddb/shared/IDBError.h	2015-11-23 22:10:05 UTC (rev 192751)
+++ trunk/Source/WebCore/Modules/indexeddb/shared/IDBError.h	2015-11-23 23:12:03 UTC (rev 192752)
@@ -32,8 +32,10 @@
 
 namespace WebCore {
 
+static const int IDBExceptionCodeOffset = 1200;
+
 enum class IDBExceptionCode {
-    None = 0,
+    None = IDBExceptionCodeOffset,
     Unknown,
     ConstraintError,
     DataError,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to