Title: [228372] branches/safari-605-branch/Source/WebCore
Revision
228372
Author
d...@apple.com
Date
2018-02-12 08:10:17 -0800 (Mon, 12 Feb 2018)

Log Message

Cherry-pick r228349. rdar://problem/37411410

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/WebCore/ChangeLog (228371 => 228372)


--- branches/safari-605-branch/Source/WebCore/ChangeLog	2018-02-12 07:33:46 UTC (rev 228371)
+++ branches/safari-605-branch/Source/WebCore/ChangeLog	2018-02-12 16:10:17 UTC (rev 228372)
@@ -1,3 +1,21 @@
+2018-02-12  Dean Jackson  <d...@apple.com>
+
+        Cherry-pick r228349. rdar://problem/37411410
+
+    2018-02-09  Dean Jackson  <d...@apple.com>
+
+            ImageBitmapRenderingContext should be Runtime guarded
+            https://bugs.webkit.org/show_bug.cgi?id=182665
+            <rdar://problem/37411410>
+
+            Reviewed by Sam Weinig.
+
+            Add a flag to ensure the ImageBitmapRenderingContext interface is only
+            visible when the runtime feature is enabled.
+
+            * bindings/js/WebCoreBuiltinNames.h:
+            * html/canvas/ImageBitmapRenderingContext.idl:
+
 2018-02-09  Jason Marcell  <jmarc...@apple.com>
 
         Cherry-pick r228241. rdar://problem/37408896

Modified: branches/safari-605-branch/Source/WebCore/bindings/js/WebCoreBuiltinNames.h (228371 => 228372)


--- branches/safari-605-branch/Source/WebCore/bindings/js/WebCoreBuiltinNames.h	2018-02-12 07:33:46 UTC (rev 228371)
+++ branches/safari-605-branch/Source/WebCore/bindings/js/WebCoreBuiltinNames.h	2018-02-12 16:10:17 UTC (rev 228372)
@@ -78,6 +78,7 @@
     macro(IDBTransaction) \
     macro(IDBVersionChangeEvent) \
     macro(ImageBitmap) \
+    macro(ImageBitmapRenderingContext) \
     macro(InputEvent) \
     macro(IntersectionObserver) \
     macro(IntersectionObserverEntry) \

Modified: branches/safari-605-branch/Source/WebCore/html/canvas/ImageBitmapRenderingContext.idl (228371 => 228372)


--- branches/safari-605-branch/Source/WebCore/html/canvas/ImageBitmapRenderingContext.idl	2018-02-12 07:33:46 UTC (rev 228371)
+++ branches/safari-605-branch/Source/WebCore/html/canvas/ImageBitmapRenderingContext.idl	2018-02-12 16:10:17 UTC (rev 228372)
@@ -24,6 +24,7 @@
  */
 
 [
+    EnabledAtRuntime=ImageBitmapOffscreenCanvas,
     Exposed=Window
 ] interface ImageBitmapRenderingContext {
     readonly attribute HTMLCanvasElement canvas;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to