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

Unified Diff: third_party/WebKit/Source/core/html/HTMLElement.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/HTMLElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLElement.idl b/third_party/WebKit/Source/core/html/HTMLElement.idl
index 057ce9436763b04b2db350c82c0327b0efee0979..6b33617f0815c65b368b22c8b9833cf89f967fa7 100644
--- a/third_party/WebKit/Source/core/html/HTMLElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLElement.idl
@@ -22,26 +22,26 @@
[CustomConstructor]
interface HTMLElement : Element {
// metadata attributes
- [Reflect] attribute DOMString title;
- [Reflect] attribute DOMString lang;
- attribute boolean translate;
- attribute DOMString dir;
+ [CEReactions, Reflect] attribute DOMString title;
+ [CEReactions, Reflect] attribute DOMString lang;
+ [CEReactions] attribute boolean translate;
+ [CEReactions] attribute DOMString dir;
[SameObject, PerWorldBindings] readonly attribute DOMStringMap dataset;
// user interaction
- [Reflect] attribute boolean hidden;
+ [CEReactions, Reflect] attribute boolean hidden;
[ImplementedAs=clickForBindings] void click();
- [CustomElementCallbacks] attribute long tabIndex;
+ [CEReactions, CustomElementCallbacks] attribute long tabIndex;
void focus();
void blur();
- [Reflect] attribute DOMString accessKey;
- [CustomElementCallbacks] attribute boolean draggable;
- [RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? contextMenu;
- attribute boolean spellcheck;
+ [CEReactions, Reflect] attribute DOMString accessKey;
+ [CEReactions, CustomElementCallbacks] attribute boolean draggable;
+ [CEReactions, RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? contextMenu;
+ [CEReactions] attribute boolean spellcheck;
// HTMLElement implements ElementContentEditable
// https://html.spec.whatwg.org/#contenteditable
- [CustomElementCallbacks, RaisesException=Setter] attribute DOMString contentEditable;
+ [CEReactions, CustomElementCallbacks, RaisesException=Setter] attribute DOMString contentEditable;
readonly attribute boolean isContentEditable;
// CSSOM View Module
@@ -62,7 +62,7 @@ interface HTMLElement : Element {
// Non-standard APIs
[TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, MeasureAs=HTMLElementInnerText] attribute DOMString innerText;
[TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, MeasureAs=HTMLElementOuterText] attribute DOMString outerText;
- [Reflect, TreatNullAs=NullString, MeasureAs=PrefixedHTMLElementDropzone] attribute DOMString webkitdropzone;
+ [CEReactions, Reflect, TreatNullAs=NullString, MeasureAs=PrefixedHTMLElementDropzone] attribute DOMString webkitdropzone;
};
HTMLElement implements GlobalEventHandlers;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLDocument.idl ('k') | third_party/WebKit/Source/core/html/HTMLEmbedElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698