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

Unified Diff: third_party/WebKit/Source/core/html/HTMLKeygenElement.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/HTMLKeygenElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLKeygenElement.idl b/third_party/WebKit/Source/core/html/HTMLKeygenElement.idl
index 011687d798683228e2a055cc7b3850f963bd6899..4b0b21d90227006b60b6a7311c33e1bcc3cc3349 100644
--- a/third_party/WebKit/Source/core/html/HTMLKeygenElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLKeygenElement.idl
@@ -31,12 +31,12 @@
// https://html.spec.whatwg.org/#the-keygen-element
interface HTMLKeygenElement : HTMLElement {
- [Reflect] attribute boolean autofocus;
- [Reflect] attribute DOMString challenge;
- [Reflect] attribute boolean disabled;
+ [CEReactions, Reflect] attribute boolean autofocus;
+ [CEReactions, Reflect] attribute DOMString challenge;
+ [CEReactions, Reflect] attribute boolean disabled;
[ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
- [Reflect, ReflectOnly="rsa", ReflectMissing="rsa"] attribute DOMString keytype;
- [Reflect] attribute DOMString name;
+ [CEReactions, Reflect, ReflectOnly="rsa", ReflectMissing="rsa"] attribute DOMString keytype;
+ [CEReactions, Reflect] attribute DOMString name;
readonly attribute DOMString type;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLInputElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLLIElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698