Bug 1622408 [wpt PR 22244] - Restore the event delegate for a CSSTransition after...
[gecko.git] / devtools / shared / fronts / manifest.js
blob9c643ffb4ebe2dfbf99cb8279bed8f37fc3700d7
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 const {
8   FrontClassWithSpec,
9   registerFront,
10 } = require("devtools/shared/protocol");
11 const { manifestSpec } = require("devtools/shared/specs/manifest");
13 class ManifestFront extends FrontClassWithSpec(manifestSpec) {
14   constructor(client) {
15     super(client);
17     // attribute name from which to retrieve the actorID out of the target actor's form
18     this.formAttributeName = "manifestActor";
19   }
22 exports.ManifestFront = ManifestFront;
23 registerFront(ManifestFront);