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

Unified Diff: Source/core/html/HTMLFormElement.idl

Issue 26466003: IDL compiler: [CustomElementCallbacks] for getter + cleanup values (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Perl Created 7 years, 2 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
Index: Source/core/html/HTMLFormElement.idl
diff --git a/Source/core/html/HTMLFormElement.idl b/Source/core/html/HTMLFormElement.idl
index f1bcb0efa2b966a979e932e250016fe4ac03a5c3..b82e224ace0895cdb3a7b397f89173457a471db7 100644
--- a/Source/core/html/HTMLFormElement.idl
+++ b/Source/core/html/HTMLFormElement.idl
@@ -22,9 +22,9 @@ interface HTMLFormElement : HTMLElement {
[Reflect=accept_charset] attribute DOMString acceptCharset;
[Reflect, URL] attribute DOMString action;
[Reflect] attribute DOMString autocomplete;
- [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString enctype;
- [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString encoding;
- [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString method;
+ [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString enctype;
+ [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString encoding;
+ [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString method;
[Reflect] attribute DOMString name;
[Reflect] attribute boolean noValidate;
[Reflect] attribute DOMString target;
@@ -35,7 +35,7 @@ interface HTMLFormElement : HTMLElement {
[ImplementedAs=anonymousNamedGetter, OverrideBuiltins, NotEnumerable] getter (NodeList or Node)(DOMString name);
[ImplementedAs=submitFromJavaScript] void submit();
- [CustomElementCallbacks=Enable] void reset();
+ [CustomElementCallbacks] void reset();
boolean checkValidity();
[EnabledAtRuntime=RequestAutocomplete] void requestAutocomplete();

Powered by Google App Engine
This is Rietveld 408576698