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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableCellElement.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/HTMLTableCellElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl b/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
index eb531964f66630ddab99685445234db3e219e700..c029aef2c5980150fde538fe795c9264aacad39f 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
@@ -21,31 +21,31 @@
// https://html.spec.whatwg.org/#attributes-common-to-td-and-th-elements
interface HTMLTableCellElement : HTMLElement {
- attribute unsigned long colSpan;
- attribute unsigned long rowSpan;
+ [CEReactions] attribute unsigned long colSpan;
+ [CEReactions] attribute unsigned long rowSpan;
// TODO(foolip): headers should be a [PutForwards=value] readonly attribute
// DOMTokenList.
- [Reflect, TreatNullAs=NullString] attribute DOMString headers;
+ [CEReactions, Reflect, TreatNullAs=NullString] attribute DOMString headers;
readonly attribute long cellIndex;
// obsolete members
// https://html.spec.whatwg.org/#HTMLTableCellElement-partial
- [Reflect] attribute DOMString align;
- [Reflect] attribute DOMString axis;
- [Reflect] attribute DOMString height;
- [Reflect] attribute DOMString width;
+ [CEReactions, Reflect] attribute DOMString align;
+ [CEReactions, Reflect] attribute DOMString axis;
+ [CEReactions, Reflect] attribute DOMString height;
+ [CEReactions, Reflect] attribute DOMString width;
- [Reflect=char] attribute DOMString ch;
- [Reflect=charoff] attribute DOMString chOff;
- [Reflect] attribute boolean noWrap;
- [Reflect] attribute DOMString vAlign;
+ [CEReactions, Reflect=char] attribute DOMString ch;
+ [CEReactions, Reflect=charoff] attribute DOMString chOff;
+ [CEReactions, Reflect] attribute boolean noWrap;
+ [CEReactions, Reflect] attribute DOMString vAlign;
- [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
+ [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
// TODO(foolip): The spec has HTMLTableHeaderCellElement and
// HTMLTableDataCellElement interfaces for the th and td elements
// respectively. HTMLTableHeaderCellElement has the abbr and scope
// attributes, while HTMLTableDataCellElement has only abbr.
- [Reflect] attribute DOMString abbr;
- [Reflect] attribute DOMString scope;
+ [CEReactions, Reflect] attribute DOMString abbr;
+ [CEReactions, Reflect] attribute DOMString scope;
};

Powered by Google App Engine
This is Rietveld 408576698