2012-07-17 01:42:18 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://www.w3.org/TR/hr-time/
|
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2012-11-27 20:32:05 +00:00
|
|
|
typedef double DOMHighResTimeStamp;
|
2013-10-16 01:35:44 +00:00
|
|
|
typedef sequence <PerformanceEntry> PerformanceEntryList;
|
2012-07-17 01:42:18 +00:00
|
|
|
|
2014-08-29 23:50:06 +00:00
|
|
|
[Exposed=(Window,Worker)]
|
2012-07-17 01:42:18 +00:00
|
|
|
interface Performance {
|
2015-01-15 22:39:01 +00:00
|
|
|
[DependsOn=DeviceState, Affects=Nothing]
|
2012-11-27 20:32:05 +00:00
|
|
|
DOMHighResTimeStamp now();
|
2014-08-29 23:50:06 +00:00
|
|
|
};
|
2012-07-17 01:42:18 +00:00
|
|
|
|
2014-08-29 23:50:06 +00:00
|
|
|
[Exposed=Window]
|
|
|
|
partial interface Performance {
|
2012-12-25 22:00:15 +00:00
|
|
|
[Constant]
|
2012-07-17 01:42:18 +00:00
|
|
|
readonly attribute PerformanceTiming timing;
|
2012-12-25 22:00:15 +00:00
|
|
|
[Constant]
|
2012-07-17 01:42:18 +00:00
|
|
|
readonly attribute PerformanceNavigation navigation;
|
2013-07-26 16:00:49 +00:00
|
|
|
|
|
|
|
jsonifier;
|
2012-07-17 01:42:18 +00:00
|
|
|
};
|
2013-10-16 01:35:44 +00:00
|
|
|
|
2014-05-10 02:12:06 +00:00
|
|
|
// http://www.w3.org/TR/performance-timeline/#sec-window.performance-attribute
|
2014-08-29 23:50:06 +00:00
|
|
|
[Exposed=Window]
|
2013-10-16 01:35:44 +00:00
|
|
|
partial interface Performance {
|
2014-04-21 13:34:31 +00:00
|
|
|
[Pref="dom.enable_resource_timing"]
|
2013-10-16 01:35:44 +00:00
|
|
|
PerformanceEntryList getEntries();
|
2014-04-21 13:34:31 +00:00
|
|
|
[Pref="dom.enable_resource_timing"]
|
2013-10-16 01:35:44 +00:00
|
|
|
PerformanceEntryList getEntriesByType(DOMString entryType);
|
2014-04-21 13:34:31 +00:00
|
|
|
[Pref="dom.enable_resource_timing"]
|
2013-10-16 01:35:44 +00:00
|
|
|
PerformanceEntryList getEntriesByName(DOMString name, optional DOMString
|
|
|
|
entryType);
|
|
|
|
};
|
|
|
|
|
2014-05-10 02:12:06 +00:00
|
|
|
// http://www.w3.org/TR/resource-timing/#extensions-performance-interface
|
2014-08-29 23:50:06 +00:00
|
|
|
[Exposed=Window]
|
2013-10-16 01:35:44 +00:00
|
|
|
partial interface Performance {
|
2014-04-21 13:34:31 +00:00
|
|
|
[Pref="dom.enable_resource_timing"]
|
2013-10-16 01:35:44 +00:00
|
|
|
void clearResourceTimings();
|
2014-04-21 13:34:31 +00:00
|
|
|
[Pref="dom.enable_resource_timing"]
|
2013-10-16 01:35:44 +00:00
|
|
|
void setResourceTimingBufferSize(unsigned long maxSize);
|
2014-05-10 02:12:06 +00:00
|
|
|
[Pref="dom.enable_resource_timing"]
|
|
|
|
attribute EventHandler onresourcetimingbufferfull;
|
2013-10-16 01:35:44 +00:00
|
|
|
};
|