Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1316)

Unified Diff: core/html/HTMLDocument.idl

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLBodyElement.idl ('k') | core/html/HTMLElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLDocument.idl
diff --git a/core/html/HTMLDocument.idl b/core/html/HTMLDocument.idl
index 860900fa9efe8dd7053f4bd68d5808b7e713f57b..e44baeeb678a45728286ba8d594fb6df21532a63 100644
--- a/core/html/HTMLDocument.idl
+++ b/core/html/HTMLDocument.idl
@@ -21,10 +21,10 @@
[
CustomToV8
] interface HTMLDocument : Document {
- [Custom] void open();
+ [Custom, CustomElementCallbacks=Enable] void open();
void close();
- [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void write([Default=Undefined] optional DOMString text);
- [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void writeln([Default=Undefined] optional DOMString text);
+ [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);
readonly attribute HTMLCollection embeds;
readonly attribute HTMLCollection plugins;
@@ -36,18 +36,21 @@
[DeprecateAs=DocumentClear] void clear();
- [TreatNullAs=NullString] attribute DOMString dir;
- [TreatNullAs=NullString] attribute DOMString designMode;
+ [DeprecateAs=CaptureEvents] void captureEvents();
+ [DeprecateAs=ReleaseEvents] void releaseEvents();
+
+ [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString dir;
+ [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString designMode;
readonly attribute DOMString compatMode;
readonly attribute Element activeElement;
boolean hasFocus();
// Deprecated attributes
- [TreatNullAs=NullString] attribute DOMString bgColor;
- [TreatNullAs=NullString] attribute DOMString fgColor;
- [TreatNullAs=NullString] attribute DOMString alinkColor;
- [TreatNullAs=NullString] attribute DOMString linkColor;
- [TreatNullAs=NullString] attribute DOMString vlinkColor;
+ [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;
};
« no previous file with comments | « core/html/HTMLBodyElement.idl ('k') | core/html/HTMLElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698