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