Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / dom / webidl / PerformanceEntryEvent.webidl
blob4ddbc8049a0447fc8b5ce9389e7485cf81592f57
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  */
7 dictionary PerformanceEntryEventInit : EventInit
9   DOMString name = "";
10   DOMString entryType = "";
11   DOMHighResTimeStamp startTime = 0;
12   DOMHighResTimeStamp duration = 0;
13   double epoch = 0;
14   DOMString origin = "";
17 [ChromeOnly,
18  Exposed=Window]
19 interface PerformanceEntryEvent : Event
21   constructor(DOMString type,
22               optional PerformanceEntryEventInit eventInitDict = {});
24   readonly attribute DOMString name;
25   readonly attribute DOMString entryType;
26   readonly attribute DOMHighResTimeStamp startTime;
27   readonly attribute DOMHighResTimeStamp duration;
28   readonly attribute double epoch;
29   readonly attribute DOMString origin;