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

Unified Diff: third_party/WebKit/Source/core/html/HTMLOptionElement.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/HTMLOptionElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLOptionElement.idl b/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
index d3325f8fa23720c8d0c0ba559c9f7d96b5f154ee..66698f5d0ee55ca8f0e018c1f30e5949525a1bfc 100644
--- a/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
@@ -28,14 +28,14 @@
ConstructorCallWith=Document,
RaisesException=Constructor
] interface HTMLOptionElement : HTMLElement {
- [CEReactions, Reflect] attribute boolean disabled;
- readonly attribute HTMLFormElement? form;
- [CEReactions] attribute DOMString label;
- [CEReactions, Reflect=selected] attribute boolean defaultSelected;
- [ImplementedAs=selectedForBinding] attribute boolean selected;
- [CEReactions] attribute DOMString value;
+ [Measure, CEReactions, Reflect] attribute boolean disabled;
+ [Measure] readonly attribute HTMLFormElement? form;
+ [Measure, CEReactions] attribute DOMString label;
+ [Measure, CEReactions, Reflect=selected] attribute boolean defaultSelected;
+ [Measure, ImplementedAs=selectedForBinding] attribute boolean selected;
+ [Measure, CEReactions] attribute DOMString value;
// TODO(foolip): The text setter should never throw.
- [CEReactions, RaisesException=Setter] attribute DOMString text;
- readonly attribute long index;
+ [Measure, CEReactions, RaisesException=Setter] attribute DOMString text;
+ [Measure] readonly attribute long index;
};

Powered by Google App Engine
This is Rietveld 408576698