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

Unified Diff: third_party/WebKit/Source/core/html/HTMLStyleElement.idl

Issue 2526943002: Add use counters for lots of DOM APIs.
Patch Set: Add use counters for lots of DOM APIs. 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/HTMLStyleElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLStyleElement.idl b/third_party/WebKit/Source/core/html/HTMLStyleElement.idl
index 2ecd8b8459c05665f6ffb387a5a8ec99b90bf45d..487d12f3d536f59621564895e122357d1c075ba7 100644
--- a/third_party/WebKit/Source/core/html/HTMLStyleElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLStyleElement.idl
@@ -24,10 +24,10 @@ interface HTMLStyleElement : HTMLElement {
// TODO(foolip): The disabled attribute has been removed from the spec:
// https://www.w3.org/Bugs/Public/show_bug.cgi?id=14703
[Measure] attribute boolean disabled;
- [CEReactions, Reflect] attribute DOMString media;
- [CEReactions, Reflect] attribute DOMString type;
+ [Measure, CEReactions, Reflect] attribute DOMString media;
+ [Measure, CEReactions, Reflect] attribute DOMString type;
// HTMLStyleElement implements LinkStyle
// https://dev.w3.org/csswg/cssom/#the-linkstyle-interface
- readonly attribute StyleSheet? sheet;
+ [Measure] readonly attribute StyleSheet? sheet;
};

Powered by Google App Engine
This is Rietveld 408576698