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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAnchorElement.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/HTMLAnchorElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl b/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl
index 1b736f46f2edf94c245bb6a6dc487ad9ec0b5762..ef3b7435c0229359dbb9d033d686b7bc72ca29a6 100644
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl
@@ -21,25 +21,25 @@
// https://html.spec.whatwg.org/#the-a-element
interface HTMLAnchorElement : HTMLElement {
- [CEReactions, Reflect] attribute DOMString target;
- [CEReactions, Reflect] attribute DOMString download;
+ [Measure, CEReactions, Reflect] attribute DOMString target;
+ [Measure, CEReactions, Reflect] attribute DOMString download;
// 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: readonly attribute DOMTokenList relList;
- [CEReactions, Reflect] attribute DOMString hreflang;
- [CEReactions, Reflect] attribute DOMString type;
- [CEReactions, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerPolicy;
+ [Measure, CEReactions, Reflect] attribute DOMString hreflang;
+ [Measure, CEReactions, Reflect] attribute DOMString type;
+ [Measure, CEReactions, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerPolicy;
- [CEReactions, ImplementedAs=textContent] attribute DOMString text;
+ [Measure, CEReactions, ImplementedAs=textContent] attribute DOMString text;
// obsolete members
// https://html.spec.whatwg.org/#HTMLAnchorElement-partial
- [CEReactions, Reflect] attribute DOMString coords;
- [CEReactions, Reflect] attribute DOMString charset;
- [CEReactions, Reflect] attribute DOMString name;
- [CEReactions, Reflect] attribute DOMString rev;
- [CEReactions, Reflect] attribute DOMString shape;
+ [Measure, CEReactions, Reflect] attribute DOMString coords;
+ [Measure, CEReactions, Reflect] attribute DOMString charset;
+ [Measure, CEReactions, Reflect] attribute DOMString name;
+ [Measure, CEReactions, Reflect] attribute DOMString rev;
+ [Measure, CEReactions, Reflect] attribute DOMString shape;
};
HTMLAnchorElement implements HTMLHyperlinkElementUtils;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLAllCollection.idl ('k') | third_party/WebKit/Source/core/html/HTMLAreaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698