| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // The spec for HTMLCanvasElement.getContext() defines the context | 5 // The spec for HTMLCanvasElement.getContext() defines the context |
| 6 // creation attributes as type "any". In order to eliminate custom | 6 // creation attributes as type "any". In order to eliminate custom |
| 7 // bindings for getContext(), we define a dictionary that contains the | 7 // bindings for getContext(), we define a dictionary that contains the |
| 8 // union of all of the context types' attributes. Note that it is not | 8 // union of all of the context types' attributes. Note that it is not |
| 9 // possible to use a union type for this purpose because two dictionary | 9 // possible to use a union type for this purpose because two dictionary |
| 10 // types are not distinguishable. | 10 // types are not distinguishable. |
| 11 // | 11 // |
| 12 // Fortunately, there aren't any context creation attributes which are | 12 // Fortunately, there aren't any context creation attributes which are |
| 13 // defined with different default values in different context | 13 // defined with different default values in different context |
| 14 // specifications. (The "alpha" value, in particular, has a default | 14 // specifications. (The "alpha" value, in particular, has a default |
| 15 // value of true for both the Canvas2D and WebGL specifications.) | 15 // value of true for both the Canvas2D and WebGL specifications.) |
| 16 // | 16 // |
| 17 // The PermissiveDictionaryConversion extended attribute ignores | 17 // The PermissiveDictionaryConversion extended attribute ignores |
| 18 // non-object types (like 'true' and 'false') passed to getContext() for | 18 // non-object types (like 'true' and 'false') passed to getContext() for |
| 19 // the attributes instead of raising TypeError, following the behavior | 19 // the attributes instead of raising TypeError, following the behavior |
| 20 // of the previous custom binding. | 20 // of the previous custom binding. |
| 21 // | 21 // |
| 22 // N.B.: Web IDL doesn't support multiple inheritance of dictionaries. | 22 // N.B.: Web IDL doesn't support multiple inheritance of dictionaries. |
| 23 | 23 |
| 24 [PermissiveDictionaryConversion] | 24 [PermissiveDictionaryConversion] |
| 25 dictionary CanvasContextCreationAttributes { | 25 dictionary CanvasContextCreationAttributes { |
| 26 // Canvas 2D attributes | 26 // Canvas 2D attributes |
| 27 boolean alpha = true; // Also used for WebGL. | 27 boolean alpha = true; // Also used for WebGL. |
| 28 [RuntimeEnabled=ExperimentalCanvasFeatures] DOMString colorSpace = "legacy-s
rgb"; |
| 28 | 29 |
| 29 // WebGL attributes | 30 // WebGL attributes |
| 30 boolean depth = true; | 31 boolean depth = true; |
| 31 boolean stencil = false; | 32 boolean stencil = false; |
| 32 boolean antialias = true; | 33 boolean antialias = true; |
| 33 boolean premultipliedAlpha = true; | 34 boolean premultipliedAlpha = true; |
| 34 boolean preserveDrawingBuffer = false; | 35 boolean preserveDrawingBuffer = false; |
| 35 boolean failIfMajorPerformanceCaveat = false; | 36 boolean failIfMajorPerformanceCaveat = false; |
| 36 }; | 37 }; |
| OLD | NEW |