Chromium Code Reviews| Index: Source/core/html/canvas/Canvas2DContextAttributes.idl |
| diff --git a/Source/core/html/canvas/Canvas2DContextAttributes.idl b/Source/core/html/canvas/Canvas2DContextAttributes.idl |
| index f7dfab1fa373c4fbd805806a854dcd74b71a0644..4de5f9bd5e9a4fafd0bc9c2451c0f4ca2b791544 100644 |
| --- a/Source/core/html/canvas/Canvas2DContextAttributes.idl |
| +++ b/Source/core/html/canvas/Canvas2DContextAttributes.idl |
| @@ -24,10 +24,9 @@ |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| -[ |
| - NoInterfaceObject, |
| - WillBeGarbageCollected, |
| -] interface Canvas2DContextAttributes { |
| - attribute boolean alpha; |
| - [RuntimeEnabled=ExperimentalCanvasFeatures] attribute DOMString storage; |
| +dictionary Canvas2DContextAttributes { |
| + boolean alpha = true; |
| + // Note: the bindings generator ignores the RuntimeEnabled |
| + // extended attribute for dictionary members. |
|
bashi
2014/12/12 00:35:24
Could you replace "Note" with "FIXME"? I filed a b
Ken Russell (switch to Gerrit)
2014/12/12 06:59:31
Actually, I've deleted this member based on junov'
|
| + [RuntimeEnabled=ExperimentalCanvasFeatures] DOMString storage; |
| }; |