| Index: third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| diff --git a/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl b/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| index 56f842ea0cda82347349d056f41c2d2da1679659..c0ecbaa3bf81fb027e853b00e284f6634a35a992 100644
|
| --- a/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| +++ b/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| @@ -4,11 +4,11 @@
|
|
|
| // https://html.spec.whatwg.org/#imagebitmapoptions
|
|
|
| -[RuntimeEnabled=ExperimentalCanvasFeatures] enum ImageOrientation { "none", "flipY" };
|
| -[RuntimeEnabled=ExperimentalCanvasFeatures] enum PremultiplyAlpha { "none", "premultiply", "default" };
|
| -[RuntimeEnabled=ExperimentalCanvasFeatures] enum ColorspaceConversion { "none", "default" };
|
| +enum ImageOrientation { "none", "flipY" };
|
| +enum PremultiplyAlpha { "none", "premultiply", "default" };
|
| +enum ColorspaceConversion { "none", "default" };
|
| dictionary ImageBitmapOptions {
|
| - [RuntimeEnabled=ExperimentalCanvasFeatures] ImageOrientation imageOrientation = "none";
|
| - [RuntimeEnabled=ExperimentalCanvasFeatures] PremultiplyAlpha premultiplyAlpha = "default";
|
| - [RuntimeEnabled=ExperimentalCanvasFeatures] ColorspaceConversion colorspaceConversion = "default";
|
| + ImageOrientation imageOrientation = "none";
|
| + PremultiplyAlpha premultiplyAlpha = "default";
|
| + ColorspaceConversion colorspaceConversion = "default";
|
| };
|
|
|