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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMeterElement.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/HTMLMeterElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLMeterElement.idl b/third_party/WebKit/Source/core/html/HTMLMeterElement.idl
index 7e1e755fb23e84c31dc81c86c5e4bd20af717b0e..2349c4d32a4ff548efe9f77f10ed8fb31b799223 100644
--- a/third_party/WebKit/Source/core/html/HTMLMeterElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLMeterElement.idl
@@ -20,11 +20,11 @@
// https://html.spec.whatwg.org/#the-meter-element
interface HTMLMeterElement : HTMLElement {
- [CEReactions] attribute double value;
- [CEReactions] attribute double min;
- [CEReactions] attribute double max;
- [CEReactions] attribute double low;
- [CEReactions] attribute double high;
- [CEReactions] attribute double optimum;
+ [Measure, CEReactions] attribute double value;
+ [Measure, CEReactions] attribute double min;
+ [Measure, CEReactions] attribute double max;
+ [Measure, CEReactions] attribute double low;
+ [Measure, CEReactions] attribute double high;
+ [Measure, CEReactions] attribute double optimum;
readonly attribute NodeList labels;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMetaElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLModElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698