| Index: core/html/HTMLDocument.idl
|
| diff --git a/core/html/HTMLDocument.idl b/core/html/HTMLDocument.idl
|
| index e44baeeb678a45728286ba8d594fb6df21532a63..764f1af8c62173e11eb88e114f80dde003647dac 100644
|
| --- a/core/html/HTMLDocument.idl
|
| +++ b/core/html/HTMLDocument.idl
|
| @@ -18,13 +18,11 @@
|
| * Boston, MA 02110-1301, USA.
|
| */
|
|
|
| -[
|
| - CustomToV8
|
| -] interface HTMLDocument : Document {
|
| - [Custom, CustomElementCallbacks=Enable] void open();
|
| +interface HTMLDocument : Document {
|
| + [Custom, CustomElementCallbacks] void open();
|
| void close();
|
| - [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds, CustomElementCallbacks=Enable] void write([Default=Undefined] optional DOMString text);
|
| - [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds, CustomElementCallbacks=Enable] void writeln([Default=Undefined] optional DOMString text);
|
| + [Custom, PerWorldBindings, ActivityLogging=AccessForIsolatedWorlds, CustomElementCallbacks] void write([Default=Undefined] optional DOMString text);
|
| + [Custom, PerWorldBindings, ActivityLogging=AccessForIsolatedWorlds, CustomElementCallbacks] void writeln([Default=Undefined] optional DOMString text);
|
|
|
| readonly attribute HTMLCollection embeds;
|
| readonly attribute HTMLCollection plugins;
|
| @@ -39,18 +37,18 @@
|
| [DeprecateAs=CaptureEvents] void captureEvents();
|
| [DeprecateAs=ReleaseEvents] void releaseEvents();
|
|
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString dir;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString designMode;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString designMode;
|
| readonly attribute DOMString compatMode;
|
|
|
| readonly attribute Element activeElement;
|
| boolean hasFocus();
|
|
|
| // Deprecated attributes
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString bgColor;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString fgColor;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString alinkColor;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString linkColor;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString vlinkColor;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString bgColor;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString fgColor;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString alinkColor;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString linkColor;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString vlinkColor;
|
| };
|
|
|
|
|