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

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

Issue 2526943002: Add use counters for lots of DOM APIs.
Patch Set: Add use counters for lots of DOM APIs. 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/HTMLOutputElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLOutputElement.idl b/third_party/WebKit/Source/core/html/HTMLOutputElement.idl
index 8e55d6cf2a4ef21c80f200bd090305315a08300c..227a9b13ae2a9bfbb9fad9ce3c3babb903edfb47 100644
--- a/third_party/WebKit/Source/core/html/HTMLOutputElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLOutputElement.idl
@@ -26,20 +26,20 @@
// https://html.spec.whatwg.org/#the-output-element
interface HTMLOutputElement : HTMLElement {
- [CEReactions, PutForwards=value] readonly attribute DOMTokenList htmlFor;
- [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
- [CEReactions, Reflect] attribute DOMString name;
+ [Measure, CEReactions, PutForwards=value] readonly attribute DOMTokenList htmlFor;
+ [Measure, ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
+ [Measure, CEReactions, Reflect] attribute DOMString name;
- readonly attribute DOMString type;
- [CEReactions] attribute DOMString defaultValue;
- [CEReactions] attribute DOMString value;
+ [Measure] readonly attribute DOMString type;
+ [Measure, CEReactions] attribute DOMString defaultValue;
+ [Measure, CEReactions] attribute DOMString value;
- readonly attribute boolean willValidate;
- readonly attribute ValidityState validity;
- readonly attribute DOMString validationMessage;
- boolean checkValidity();
- boolean reportValidity();
- void setCustomValidity(DOMString error);
+ [MeasureAs=ValidationAPI] readonly attribute boolean willValidate;
+ [MeasureAs=ValidationAPI] readonly attribute ValidityState validity;
+ [MeasureAs=ValidationAPI] readonly attribute DOMString validationMessage;
+ [MeasureAs=ValidationAPI] boolean checkValidity();
+ [MeasureAs=ValidationAPI] boolean reportValidity();
+ [MeasureAs=ValidationAPI] void setCustomValidity(DOMString error);
readonly attribute NodeList labels;
};

Powered by Google App Engine
This is Rietveld 408576698