summaryrefslogtreecommitdiffstats
path: root/devtools/shared/webconsole/test/chrome/test_object_actor_native_getters_lenient_this.html
blob: 473dfb3b03a3c02760ab8a5b9a99388e0f8f4f26 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE HTML>
<html lang="en">
<head>
  <meta charset="utf8">
  <title>Test that WebIDL attributes with the LenientThis extended attribute
         do not appear in the wrong objects</title>
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="common.js"></script>
  <!-- Any copyright is dedicated to the Public Domain.
     - http://creativecommons.org/publicdomain/zero/1.0/ -->
</head>
<body>
<p>Test for the native getters in object actors</p>

<script class="testbody" type="text/javascript">
"use strict";

SimpleTest.waitForExplicitFinish();

async function startTest() {
  removeEventListener("load", startTest);
  const {state} = await attachConsoleToTab(["ConsoleAPI"]);

  const onConsoleApiCall = state.webConsoleFront.once("consoleAPICall");
  const docAsProto = Object.create(document);
  top.console.log("hello", docAsProto);
  const {message} = await onConsoleApiCall;

  info("checking the console API call packet");
  checkConsoleAPICall(message, {
    level: "log",
    filename: /test_object_actor/,
    arguments: ["hello", {
      type: "object",
      actor: /[a-z]/,
    }],
  });

  info("inspecting object properties");
  const args = message.arguments;

  const {ownProperties, safeGetterValues} = await args[1].getPrototypeAndProperties();

  is(Object.keys(ownProperties).length, 0, "number of properties");
  is(Object.keys(safeGetterValues).length, 0, "number of safe getters");

  await closeDebugger(state);
  SimpleTest.finish();
}

addEventListener("load", startTest);
</script>
</body>
</html>