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

Unified Diff: third_party/WebKit/Source/core/html/HTMLButtonElement.idl

Issue 2043503002: Add [CEReactions] IDL attributes for Custom Elements V1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yukishiino review Created 4 years, 6 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: third_party/WebKit/Source/core/html/HTMLButtonElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLButtonElement.idl b/third_party/WebKit/Source/core/html/HTMLButtonElement.idl
index a6c47d6799577f0c31cd3e7334ccffc53b914afe..b357e682e28654c59ff25636a3f3aedd7359b02f 100644
--- a/third_party/WebKit/Source/core/html/HTMLButtonElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLButtonElement.idl
@@ -21,17 +21,17 @@
// https://html.spec.whatwg.org/#the-button-element
interface HTMLButtonElement : HTMLElement {
- [Reflect] attribute boolean autofocus;
- [Reflect] attribute boolean disabled;
+ [CEReactions, Reflect] attribute boolean autofocus;
+ [CEReactions, Reflect] attribute boolean disabled;
[ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
- attribute DOMString formAction;
- attribute DOMString formEnctype;
- attribute DOMString formMethod;
- [Reflect] attribute boolean formNoValidate;
- [Reflect] attribute DOMString formTarget;
- [Reflect] attribute DOMString name;
- attribute DOMString type;
- [Reflect] attribute DOMString value;
+ [CEReactions] attribute DOMString formAction;
+ [CEReactions] attribute DOMString formEnctype;
+ [CEReactions] attribute DOMString formMethod;
+ [CEReactions, Reflect] attribute boolean formNoValidate;
+ [CEReactions, Reflect] attribute DOMString formTarget;
+ [CEReactions, Reflect] attribute DOMString name;
+ [CEReactions] attribute DOMString type;
+ [CEReactions, Reflect] attribute DOMString value;
// FIXME: attribute HTMLMenuElement? menu;
readonly attribute boolean willValidate;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLBodyElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLCanvasElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698