Title: [201918] trunk
Revision
201918
Author
[email protected]
Date
2016-06-10 00:37:52 -0700 (Fri, 10 Jun 2016)

Log Message

DOMException should be exposed to workers
https://bugs.webkit.org/show_bug.cgi?id=158608

Reviewed by Alex Christensen.

Source/WebCore:

DOMException should be exposed to workers:
https://heycam.github.io/webidl/#es-DOMException-call

Both Firefox and Chrome expose DOMException to workers already.

No new tests, rebaselined existing test.

* dom/DOMCoreException.idl:

LayoutTests:

Rebaseline existing test.

* js/dom/global-constructors-attributes-dedicated-worker-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (201917 => 201918)


--- trunk/LayoutTests/ChangeLog	2016-06-10 06:50:34 UTC (rev 201917)
+++ trunk/LayoutTests/ChangeLog	2016-06-10 07:37:52 UTC (rev 201918)
@@ -1,3 +1,14 @@
+2016-06-10  Chris Dumez  <[email protected]>
+
+        DOMException should be exposed to workers
+        https://bugs.webkit.org/show_bug.cgi?id=158608
+
+        Reviewed by Alex Christensen.
+
+        Rebaseline existing test.
+
+        * js/dom/global-constructors-attributes-dedicated-worker-expected.txt:
+
 2016-06-09  Chris Fleizach  <[email protected]>
 
         AX: VoiceOver Unable to View Download Progress or Completion Status for Mail Attachments

Modified: trunk/LayoutTests/js/dom/global-constructors-attributes-dedicated-worker-expected.txt (201917 => 201918)


--- trunk/LayoutTests/js/dom/global-constructors-attributes-dedicated-worker-expected.txt	2016-06-10 06:50:34 UTC (rev 201917)
+++ trunk/LayoutTests/js/dom/global-constructors-attributes-dedicated-worker-expected.txt	2016-06-10 07:37:52 UTC (rev 201918)
@@ -34,6 +34,11 @@
 PASS [Worker] Object.getOwnPropertyDescriptor(global, 'CountQueuingStrategy').hasOwnProperty('set') is false
 PASS [Worker] Object.getOwnPropertyDescriptor(global, 'CountQueuingStrategy').enumerable is false
 PASS [Worker] Object.getOwnPropertyDescriptor(global, 'CountQueuingStrategy').configurable is true
+PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMException').value is DOMException
+PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMException').hasOwnProperty('get') is false
+PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMException').hasOwnProperty('set') is false
+PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMException').enumerable is false
+PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMException').configurable is true
 PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DataView').value is DataView
 PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DataView').hasOwnProperty('get') is false
 PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DataView').hasOwnProperty('set') is false

Modified: trunk/Source/WebCore/ChangeLog (201917 => 201918)


--- trunk/Source/WebCore/ChangeLog	2016-06-10 06:50:34 UTC (rev 201917)
+++ trunk/Source/WebCore/ChangeLog	2016-06-10 07:37:52 UTC (rev 201918)
@@ -1,3 +1,19 @@
+2016-06-10  Chris Dumez  <[email protected]>
+
+        DOMException should be exposed to workers
+        https://bugs.webkit.org/show_bug.cgi?id=158608
+
+        Reviewed by Alex Christensen.
+
+        DOMException should be exposed to workers:
+        https://heycam.github.io/webidl/#es-DOMException-call
+
+        Both Firefox and Chrome expose DOMException to workers already.
+
+        No new tests, rebaselined existing test.
+
+        * dom/DOMCoreException.idl:
+
 2016-06-09  Alex Christensen  <[email protected]>
 
         Fix CMake build.

Modified: trunk/Source/WebCore/dom/DOMCoreException.idl (201917 => 201918)


--- trunk/Source/WebCore/dom/DOMCoreException.idl	2016-06-10 06:50:34 UTC (rev 201917)
+++ trunk/Source/WebCore/dom/DOMCoreException.idl	2016-06-10 07:37:52 UTC (rev 201918)
@@ -28,6 +28,7 @@
 
 [
     DoNotCheckConstants,
+    Exposed=(Window,Worker),
     InterfaceName=DOMException,
     ImplementationLacksVTable,
 ] exception DOMCoreException {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to