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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFieldSetElement.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/HTMLFieldSetElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.idl b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.idl
index dcf557f543ef11dd8f601345c2feae7e4b69b9b9..1c97b694b77bca4ab00ea3c52f947f4b5ae096eb 100644
--- a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.idl
@@ -22,16 +22,16 @@
interface HTMLFieldSetElement : HTMLElement {
[CEReactions, Reflect] attribute boolean disabled;
[ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
- [CEReactions, Reflect] attribute DOMString name;
+ [Measure, CEReactions, Reflect] attribute DOMString name;
- readonly attribute DOMString type;
+ [Measure] readonly attribute DOMString type;
[Measure] readonly attribute HTMLCollection elements;
- readonly attribute boolean willValidate;
- [SameObject] readonly attribute ValidityState validity;
- readonly attribute DOMString validationMessage;
- boolean checkValidity();
- boolean reportValidity();
- void setCustomValidity(DOMString error);
+ [MeasureAs=ValidationAPI] readonly attribute boolean willValidate;
+ [MeasureAs=ValidationAPI, SameObject] readonly attribute ValidityState validity;
+ [MeasureAs=ValidationAPI] readonly attribute DOMString validationMessage;
+ [MeasureAs=ValidationAPI] boolean checkValidity();
+ [MeasureAs=ValidationAPI] boolean reportValidity();
+ [MeasureAs=ValidationAPI] void setCustomValidity(DOMString error);
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLEmbedElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLFontElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698