summaryrefslogtreecommitdiff
path: root/Source/WebCore/page/PerformanceResourceTiming.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/page/PerformanceResourceTiming.idl')
-rw-r--r--Source/WebCore/page/PerformanceResourceTiming.idl39
1 files changed, 21 insertions, 18 deletions
diff --git a/Source/WebCore/page/PerformanceResourceTiming.idl b/Source/WebCore/page/PerformanceResourceTiming.idl
index b5d6053b2..3e0ad59ce 100644
--- a/Source/WebCore/page/PerformanceResourceTiming.idl
+++ b/Source/WebCore/page/PerformanceResourceTiming.idl
@@ -28,22 +28,25 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// See: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/ResourceTiming/Overview.html
-[
- Conditional=RESOURCE_TIMING,
- OmitConstructor
-] interface PerformanceResourceTiming : PerformanceEntry {
- readonly attribute DOMString initiatorType;
+module window {
- readonly attribute double redirectStart;
- readonly attribute double redirectEnd;
- readonly attribute double fetchStart;
- readonly attribute double domainLookupStart;
- readonly attribute double domainLookupEnd;
- readonly attribute double connectStart;
- readonly attribute double connectEnd;
- readonly attribute double secureConnectionStart;
- readonly attribute double requestStart;
- readonly attribute double responseStart;
- readonly attribute double responseEnd;
-};
+ // See: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/ResourceTiming/Overview.html
+ interface [
+ Conditional=RESOURCE_TIMING,
+ OmitConstructor
+ ] PerformanceResourceTiming : PerformanceEntry {
+ readonly attribute DOMString initiatorType;
+
+ readonly attribute double redirectStart;
+ readonly attribute double redirectEnd;
+ readonly attribute double fetchStart;
+ readonly attribute double domainLookupStart;
+ readonly attribute double domainLookupEnd;
+ readonly attribute double connectStart;
+ readonly attribute double connectEnd;
+ readonly attribute double secureConnectionStart;
+ readonly attribute double requestStart;
+ readonly attribute double responseStart;
+ readonly attribute double responseEnd;
+ };
+}