Bug 1526591 - Remove devtools.inspector.shapesHighlighter.enabled pref. r=rcaliman
[gecko.git] / dom / webidl / PerformanceEntryEvent.webidl
blob2cf75c5e44378ae869bf6361b30b2cc1d342bca9
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 [Constructor(DOMString type, optional PerformanceEntryEventInit eventInitDict),
18  ChromeOnly]
19 interface PerformanceEntryEvent : Event
21   readonly attribute DOMString name;
22   readonly attribute DOMString entryType;
23   readonly attribute DOMHighResTimeStamp startTime;
24   readonly attribute DOMHighResTimeStamp duration;
25   readonly attribute double epoch;
26   readonly attribute DOMString origin;