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

Unified Diff: core/html/HTMLDocument.idl

Issue 126143003: Update IDL to Chrome 32 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Add new files Created 6 years, 11 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/HTMLDivElement.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 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;
};
« no previous file with comments | « core/html/HTMLDivElement.idl ('k') | core/html/HTMLElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698