Index: core/html/HTMLCanvasElement.idl |
diff --git a/core/html/HTMLCanvasElement.idl b/core/html/HTMLCanvasElement.idl |
index 5c851ab9600f2f9d37eabf64e94cfc2270fc4449..47c796bd202b8ea22844b3f3e1a4fff50b9a1049 100644 |
--- a/core/html/HTMLCanvasElement.idl |
+++ b/core/html/HTMLCanvasElement.idl |
@@ -30,11 +30,11 @@ interface HTMLCanvasElement : HTMLElement { |
attribute long height; |
// FIXMEDART: Upstream: Added the optional quality param that V8 accepts. |
- [Custom, RaisesException] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullString,Default=Undefined] optional DOMString type, optional float quality); |
+ [Custom, RaisesException] DOMString toDataURL([TreatUndefinedAs=NullString, Default=Undefined] optional DOMString? type, optional float quality); |
// FIXMEDART: |
// - Upstream: Added the optional quality param that V8 accepts. |
// - Return RenderingContext. |
// The custom binding is needed to handle context creation attributes. |
- [Custom, LogActivity] any getContext([Default=Undefined] optional DOMString contextId, optional Dictionary attrs); |
+ [Custom] any getContext([Default=Undefined] optional DOMString contextId, optional Dictionary attrs); |
}; |