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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAreaElement.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/HTMLAreaElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLAreaElement.idl b/third_party/WebKit/Source/core/html/HTMLAreaElement.idl
index 55b3a88404f9100e86a0341f5397b7be1bb977cf..56fcd9957dc7207e98d6fec71c5a6e4bced0cfe4 100644
--- a/third_party/WebKit/Source/core/html/HTMLAreaElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLAreaElement.idl
@@ -21,20 +21,20 @@
// https://html.spec.whatwg.org/#the-area-element
interface HTMLAreaElement : HTMLElement {
- [CEReactions, Reflect] attribute DOMString alt;
- [CEReactions, Reflect] attribute DOMString coords;
- [CEReactions, Reflect] attribute DOMString download;
- [CEReactions, Reflect] attribute DOMString shape;
- [CEReactions, Reflect] attribute DOMString target;
+ [Measure, CEReactions, Reflect] attribute DOMString alt;
+ [Measure, CEReactions, Reflect] attribute DOMString coords;
+ [Measure, CEReactions, Reflect] attribute DOMString download;
+ [Measure, CEReactions, Reflect] attribute DOMString shape;
+ [Measure, CEReactions, Reflect] attribute DOMString target;
// FIXME: ping should be a DOMTokenList.
- [CEReactions, Reflect] attribute DOMString ping;
- [CEReactions, Reflect] attribute DOMString rel;
+ [Measure, CEReactions, Reflect] attribute DOMString ping;
+ [Measure, CEReactions, Reflect] attribute DOMString rel;
// FIXME: relList is missing
- [CEReactions, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerPolicy;
+ [Measure, CEReactions, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerPolicy;
// obsolete members
// https://html.spec.whatwg.org/#HTMLAreaElement-partial
- [CEReactions, Reflect] attribute boolean noHref;
+ [Measure, CEReactions, Reflect] attribute boolean noHref;
};
HTMLAreaElement implements HTMLHyperlinkElementUtils;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLAnchorElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLAudioElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698