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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFormElement.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/HTMLFormElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLFormElement.idl b/third_party/WebKit/Source/core/html/HTMLFormElement.idl
index 0e0e4f2ed73918ec565202bfb786a0640424f573..9e054c4fbc6d67354be6db71d241d06de6803be8 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLFormElement.idl
@@ -37,10 +37,10 @@
readonly attribute long length;
[ImplementedAs=item] getter Element (unsigned long index);
// FIXME: This getter should not have [NotEnumerable].
- [NotEnumerable] getter (RadioNodeList or Element) (DOMString name);
+ [Measure, NotEnumerable] getter (RadioNodeList or Element) (DOMString name);
[ImplementedAs=submitFromJavaScript] void submit();
[CEReactions, CustomElementCallbacks] void reset();
- boolean checkValidity();
- boolean reportValidity();
+ [MeasureAs=ValidationAPI] boolean checkValidity();
+ [MeasureAs=ValidationAPI] boolean reportValidity();
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFontElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLFrameElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698