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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableElement.idl

Issue 2572003003: NOT FOR SUBMIT: use counters for jdm@
Patch Set: Merge branch 'jdm-usecounters' into jdm-merge Created 4 years 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 b785a6911c2a05586eb0e3f79f1fd03dda9355ed..96ba561f15d6d85126fde5a639487b67b77981b9 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTableElement.idl
@@ -41,14 +41,14 @@ interface HTMLTableElement : HTMLElement {
// obsolete members
// https://html.spec.whatwg.org/#HTMLTableElement-partial
- [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;
+ [Measure, CEReactions, Reflect] attribute DOMString align;
+ [Measure, CEReactions, Reflect] attribute DOMString border;
+ [Measure, CEReactions, Reflect] attribute DOMString frame;
+ [Measure, CEReactions, Reflect] attribute DOMString rules;
+ [Measure, CEReactions, Reflect] attribute DOMString summary;
+ [Measure, CEReactions, Reflect] attribute DOMString width;
- [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
- [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellPadding;
- [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellSpacing;
+ [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
+ [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellPadding;
+ [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString cellSpacing;
};

Powered by Google App Engine
This is Rietveld 408576698