summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/test/node/stubs/reps/object-with-text.js
blob: ea17d01d7e4a54686d82b264d4f2c49d56e499a0 (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
25
26
27
28
29
30
31
32
33
34
35
36
/* 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 stubs = new Map();
stubs.set("ShadowRule", {
  type: "object",
  class: "CSSStyleRule",
  actor: "server1.conn3.obj273",
  extensible: true,
  frozen: false,
  sealed: false,
  ownPropertyLength: 0,
  preview: {
    kind: "ObjectWithText",
    text: ".Shadow",
  },
});

stubs.set("CSSMediaRule", {
  type: "object",
  actor: "server2.conn8.child17/obj30",
  class: "CSSMediaRule",
  extensible: true,
  frozen: false,
  sealed: false,
  ownPropertyLength: 0,
  preview: {
    kind: "ObjectWithText",
    text: "(min-height: 680px), screen and (orientation: portrait)",
  },
});

module.exports = stubs;