aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/PerformanceResourceTiming.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls/PerformanceResourceTiming.webidl')
-rw-r--r--components/script/dom/webidls/PerformanceResourceTiming.webidl10
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/webidls/PerformanceResourceTiming.webidl b/components/script/dom/webidls/PerformanceResourceTiming.webidl
index e4f73197a8c..50a6dba1416 100644
--- a/components/script/dom/webidls/PerformanceResourceTiming.webidl
+++ b/components/script/dom/webidls/PerformanceResourceTiming.webidl
@@ -16,15 +16,15 @@ interface PerformanceResourceTiming : PerformanceEntry {
readonly attribute DOMHighResTimeStamp redirectEnd;
readonly attribute DOMHighResTimeStamp fetchStart;
readonly attribute DOMHighResTimeStamp domainLookupStart;
- // readonly attribute DOMHighResTimeStamp domainLookupEnd;
+ readonly attribute DOMHighResTimeStamp domainLookupEnd;
readonly attribute DOMHighResTimeStamp connectStart;
readonly attribute DOMHighResTimeStamp connectEnd;
- // readonly attribute DOMHighResTimeStamp secureConnectionStart;
+ readonly attribute DOMHighResTimeStamp secureConnectionStart;
readonly attribute DOMHighResTimeStamp requestStart;
readonly attribute DOMHighResTimeStamp responseStart;
readonly attribute DOMHighResTimeStamp responseEnd;
- /// readonly attribute unsigned long long transferSize;
- /// readonly attribute unsigned long long encodedBodySize;
- /// readonly attribute unsigned long long decodedBodySize;
+ readonly attribute unsigned long long transferSize;
+ readonly attribute unsigned long long encodedBodySize;
+ readonly attribute unsigned long long decodedBodySize;
[Default] object toJSON();
};