Index: third_party/WebKit/Source/core/html/TimeRanges.idl |
diff --git a/third_party/WebKit/Source/core/html/TimeRanges.idl b/third_party/WebKit/Source/core/html/TimeRanges.idl |
index a7387ff1ea68aaaf61c453afc4a7ccdab5f39eea..00ea9a0244cf848873e4ac41208a9ee2fa653da1 100644 |
--- a/third_party/WebKit/Source/core/html/TimeRanges.idl |
+++ b/third_party/WebKit/Source/core/html/TimeRanges.idl |
@@ -26,7 +26,7 @@ |
// https://html.spec.whatwg.org/#time-ranges |
interface TimeRanges { |
- readonly attribute unsigned long length; |
- [RaisesException] double start(unsigned long index); |
- [RaisesException] double end(unsigned long index); |
+ [Measure] readonly attribute unsigned long length; |
+ [Measure, RaisesException] double start(unsigned long index); |
+ [Measure, RaisesException] double end(unsigned long index); |
}; |