Title: [200697] trunk
Revision
200697
Author
beid...@apple.com
Date
2016-05-11 12:58:05 -0700 (Wed, 11 May 2016)

Log Message

Modern IDB: WebWorker support.
https://bugs.webkit.org/show_bug.cgi?id=149953

Reviewed by Alex Christensen.

LayoutTests/imported/w3c:

* IndexedDB-private-browsing/idb_webworkers-expected.txt:
* web-platform-tests/IndexedDB/idb_webworkers-expected.txt:

Source/WebCore:

No new tests (Covered by changes to existing tests).

* bindings/generic/RuntimeEnabledFeatures.cpp:
(WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures):

Modified Paths

Diff

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (200696 => 200697)


--- trunk/LayoutTests/imported/w3c/ChangeLog	2016-05-11 19:02:09 UTC (rev 200696)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2016-05-11 19:58:05 UTC (rev 200697)
@@ -1,3 +1,13 @@
+2016-05-11  Brady Eidson  <beid...@apple.com>
+
+        Modern IDB: WebWorker support.
+        https://bugs.webkit.org/show_bug.cgi?id=149953
+
+        Reviewed by Alex Christensen.
+
+        * IndexedDB-private-browsing/idb_webworkers-expected.txt:
+        * web-platform-tests/IndexedDB/idb_webworkers-expected.txt:
+
 2016-05-06  Jer Noble  <jer.no...@apple.com>
 
         Return a Promise from HTMLMediaElement.play()

Modified: trunk/LayoutTests/imported/w3c/IndexedDB-private-browsing/idb_webworkers-expected.txt (200696 => 200697)


--- trunk/LayoutTests/imported/w3c/IndexedDB-private-browsing/idb_webworkers-expected.txt	2016-05-11 19:02:09 UTC (rev 200696)
+++ trunk/LayoutTests/imported/w3c/IndexedDB-private-browsing/idb_webworkers-expected.txt	2016-05-11 19:58:05 UTC (rev 200697)
@@ -1,3 +1,3 @@
 
-FAIL IndexedDB inside of a WebWorker  assert_equals: worker has idb object expected true but got false
+PASS IndexedDB inside of a WebWorker  
 

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idb_webworkers-expected.txt (200696 => 200697)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idb_webworkers-expected.txt	2016-05-11 19:02:09 UTC (rev 200696)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idb_webworkers-expected.txt	2016-05-11 19:58:05 UTC (rev 200697)
@@ -1,3 +1,3 @@
 
-FAIL IndexedDB inside of a WebWorker  assert_equals: worker has idb object expected true but got false
+PASS IndexedDB inside of a WebWorker  
 

Modified: trunk/Source/WebCore/ChangeLog (200696 => 200697)


--- trunk/Source/WebCore/ChangeLog	2016-05-11 19:02:09 UTC (rev 200696)
+++ trunk/Source/WebCore/ChangeLog	2016-05-11 19:58:05 UTC (rev 200697)
@@ -1,3 +1,15 @@
+2016-05-11  Brady Eidson  <beid...@apple.com>
+
+        Modern IDB: WebWorker support.
+        https://bugs.webkit.org/show_bug.cgi?id=149953
+
+        Reviewed by Alex Christensen.
+
+        No new tests (Covered by changes to existing tests).
+
+        * bindings/generic/RuntimeEnabledFeatures.cpp:
+        (WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures):
+
 2016-05-11  Chris Dumez  <cdu...@apple.com>
 
         Update Node::appendChild() / replaceChild() / removeChild() / insertBefore() to take references instead of pointers

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (200696 => 200697)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2016-05-11 19:02:09 UTC (rev 200696)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2016-05-11 19:58:05 UTC (rev 200697)
@@ -61,7 +61,7 @@
     , m_isIndexedDBEnabled(false)
 #endif
 #if ENABLE(INDEXED_DATABASE_IN_WORKERS)
-    , m_isIndexedDBWorkersEnabled(false)
+    , m_isIndexedDBWorkersEnabled(true)
 #endif
 #if ENABLE(MEDIA_STREAM)
     , m_isMediaStreamEnabled(true)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to