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; |
}; |