diff options
Diffstat (limited to 'WebCore/page/Timing.idl')
-rw-r--r-- | WebCore/page/Timing.idl | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/WebCore/page/Timing.idl b/WebCore/page/Timing.idl index dbe996e..e7e46cc 100644 --- a/WebCore/page/Timing.idl +++ b/WebCore/page/Timing.idl @@ -32,20 +32,19 @@ module window { // See: http://dev.w3.org/2006/webapi/WebTiming/ interface [Conditional=WEB_TIMING, OmitConstructor] Timing { - // FIXME: Implement remainder of interface. readonly attribute unsigned long long navigationStart; - // readonly attribute unsigned long long fetchStart; readonly attribute unsigned long long unloadEventEnd; - // readonly attribute unsigned long long redirectStart; - // readonly attribute unsigned long long redirectEnd; - // readonly attribute unsigned long long domainLookupStart; - // readonly attribute unsigned long long domainLookupEnd; - // readonly attribute unsigned long long connectStart; - // readonly attribute unsigned long long connectEnd; - // readonly attribute unsigned long long requestStart; - // readonly attribute unsigned long long requestEnd; - // readonly attribute unsigned long long responseStart; - // readonly attribute unsigned long long responseEnd; + readonly attribute unsigned long long redirectStart; + readonly attribute unsigned long long redirectEnd; + readonly attribute unsigned long long fetchStart; + readonly attribute unsigned long long domainLookupStart; + readonly attribute unsigned long long domainLookupEnd; + readonly attribute unsigned long long connectStart; + readonly attribute unsigned long long connectEnd; + readonly attribute unsigned long long requestStart; + readonly attribute unsigned long long requestEnd; + readonly attribute unsigned long long responseStart; + readonly attribute unsigned long long responseEnd; readonly attribute unsigned long long loadEventStart; readonly attribute unsigned long long loadEventEnd; }; |