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

Unified Diff: third_party/WebKit/Source/core/html/HTMLProgressElement.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/HTMLProgressElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.idl b/third_party/WebKit/Source/core/html/HTMLProgressElement.idl
index 85da4e1c821e6b84da0e4f48ee5111eea5a3d036..d4987e9c4fcf2c4c182e82170a9a6184d5bdffb7 100644
--- a/third_party/WebKit/Source/core/html/HTMLProgressElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.idl
@@ -20,8 +20,8 @@
// https://html.spec.whatwg.org/#the-progress-element
interface HTMLProgressElement : HTMLElement {
- [CEReactions] attribute double value;
- [CEReactions] attribute double max;
- readonly attribute double position;
- readonly attribute NodeList labels;
+ [Measure, CEReactions] attribute double value;
+ [Measure, CEReactions] attribute double max;
+ [Measure] readonly attribute double position;
+ [Measure] readonly attribute NodeList labels;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLPreElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLQuoteElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698