summaryrefslogtreecommitdiffstats
path: root/devtools/shared/commands/resource/legacy-listeners/reflow.js
blob: 63802f510db7b1c6dd120493750d1f35fa8da1a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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/. */

"use strict";

const ResourceCommand = require("resource://devtools/shared/commands/resource/resource-command.js");

module.exports = async function ({ targetFront, onAvailable }) {
  if (!targetFront.getTrait("isBrowsingContext")) {
    // The reflows only work with BrowsingContext targets
    return;
  }
  const reflowFront = await targetFront.getFront("reflow");
  reflowFront.on("reflows", reflows =>
    onAvailable([
      {
        resourceType: ResourceCommand.TYPES.REFLOW,
        reflows,
      },
    ])
  );
  await reflowFront.start();
};