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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableElement.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/HTMLTableElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.idl b/third_party/WebKit/Source/core/html/HTMLTableElement.idl
index 94a8c53f9c1a3880dbfdd0f1880f5bc19edf0cc8..b785a6911c2a05586eb0e3f79f1fd03dda9355ed 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTableElement.idl
@@ -22,33 +22,33 @@
interface HTMLTableElement : HTMLElement {
// TODO(foolip): The caption, tHead and tFoot setters should never throw.
- [RaisesException=Setter] attribute HTMLTableCaptionElement? caption;
- HTMLTableCaptionElement createCaption();
- void deleteCaption();
- [RaisesException=Setter] attribute HTMLTableSectionElement? tHead;
- HTMLTableSectionElement createTHead();
- void deleteTHead();
- [RaisesException=Setter] attribute HTMLTableSectionElement? tFoot;
- HTMLTableSectionElement createTFoot();
- void deleteTFoot();
+ [CEReactions, RaisesException=Setter] attribute HTMLTableCaptionElement? caption;
+ [CEReactions] HTMLTableCaptionElement createCaption();
+ [CEReactions] void deleteCaption();
+ [CEReactions, RaisesException=Setter] attribute HTMLTableSectionElement? tHead;
+ [CEReactions] HTMLTableSectionElement createTHead();
+ [CEReactions] void deleteTHead();
+ [CEReactions, RaisesException=Setter] attribute HTMLTableSectionElement? tFoot;
+ [CEReactions] HTMLTableSectionElement createTFoot();
+ [CEReactions] void deleteTFoot();
readonly attribute HTMLCollection tBodies;
- HTMLTableSectionElement createTBody();
+ [CEReactions] HTMLTableSectionElement createTBody();
readonly attribute HTMLCollection rows;
- [RaisesException] HTMLTableRowElement insertRow(optional long index = -1);
- [RaisesException] void deleteRow(long index);
+ [CEReactions, RaisesException] HTMLTableRowElement insertRow(optional long index = -1);
+ [CEReactions, RaisesException] void deleteRow(long index);
// attribute boolean sortable;
// void stopSorting();
// obsolete members
// https://html.spec.whatwg.org/#HTMLTableElement-partial
- [Reflect] attribute DOMString align;
- [Reflect] attribute DOMString border;
- [Reflect] attribute DOMString frame;
- [Reflect] attribute DOMString rules;
- [Reflect] attribute DOMString summary;
- [Reflect] attribute DOMString width;
+ [CEReactions, Reflect] attribute DOMString align;
+ [CEReactions, Reflect] attribute DOMString border;
+ [CEReactions, Reflect] attribute DOMString frame;
+ [CEReactions, Reflect] attribute DOMString rules;
+ [CEReactions, Reflect] attribute DOMString summary;
+ [CEReactions, Reflect] attribute DOMString width;
- [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
- [Reflect, TreatNullAs=EmptyString] attribute DOMString cellPadding;
- [Reflect, TreatNullAs=EmptyString] attribute DOMString cellSpacing;
+ [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
+ [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellPadding;
+ [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellSpacing;
};

Powered by Google App Engine
This is Rietveld 408576698