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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.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/HTMLSelectElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.idl b/third_party/WebKit/Source/core/html/HTMLSelectElement.idl
index 1a72fc4912cdc03a4ccba8af04955ff62a6bed0d..e8172317cf074f9aacf094a4f4156e1284fccf6c 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.idl
@@ -23,26 +23,26 @@
interface HTMLSelectElement : HTMLElement {
// TODO(foolip): attribute DOMString autocomplete;
- [Reflect] attribute boolean autofocus;
- [Reflect] attribute boolean disabled;
+ [CEReactions, Reflect] attribute boolean autofocus;
+ [CEReactions, Reflect] attribute boolean disabled;
[ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
- [Reflect] attribute boolean multiple;
- [Reflect] attribute DOMString name;
- [Reflect] attribute boolean required;
- attribute unsigned long size;
+ [CEReactions, Reflect] attribute boolean multiple;
+ [CEReactions, Reflect] attribute DOMString name;
+ [CEReactions, Reflect] attribute boolean required;
+ [CEReactions] attribute unsigned long size;
readonly attribute DOMString type;
readonly attribute HTMLOptionsCollection options;
// TODO(foolip): The length setter should never throw.
- [RaisesException=Setter] attribute unsigned long length;
+ [CEReactions, RaisesException=Setter] attribute unsigned long length;
getter Element? item(unsigned long index);
HTMLOptionElement? namedItem(DOMString name);
- [RaisesException] void add((HTMLOptionElement or HTMLOptGroupElement) element,
+ [CEReactions, RaisesException] void add((HTMLOptionElement or HTMLOptGroupElement) element,
optional (HTMLElement or long)? before = null);
- [RaisesException] void remove(); // ChildNode overload
- void remove(long index);
- [RaisesException] setter void (unsigned long index, HTMLOptionElement? option);
+ [CEReactions, RaisesException] void remove(); // ChildNode overload
+ [CEReactions] void remove(long index);
+ [CEReactions, RaisesException] setter void (unsigned long index, HTMLOptionElement? option);
readonly attribute HTMLCollection selectedOptions;
attribute long selectedIndex;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLScriptElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLSlotElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698