Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / dom / webidl / GPUUncapturedErrorEvent.webidl
blobad31221427ccd0b467d7bc88f1be58a2147c69ed
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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  *
6  * The origin of this IDL file is
7  * https://gpuweb.github.io/gpuweb/
8  */
10 dictionary GPUUncapturedErrorEventInit : EventInit {
11     required GPUError error;
14 [Func="mozilla::webgpu::Instance::PrefEnabled",
15  Exposed=(Window, DedicatedWorker), SecureContext]
16 interface GPUUncapturedErrorEvent: Event {
17     constructor(DOMString type, GPUUncapturedErrorEventInit gpuUncapturedErrorEventInitDict);
18     readonly attribute GPUError error;