summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/browser_webconsole_longstring_getter.js
blob: a98674984b608a73af0a2f6df3fc90e1f29fbd65 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

// Test that getter properties that return long strings can be expanded. See Bug 1481833.

"use strict";

const LONGSTRING = "a ".repeat(10000);
const TEST_URI = `data:text/html,<!DOCTYPE html>Test expanding longString getter property
  <svg>
    <image xlink:href="data:image/png;base64,${LONGSTRING}"></image>
  </svg>
  <script>
    console.dir("Test message", document.querySelector("svg image").href);
  </script>`;

add_task(async function () {
  const hud = await openNewTabAndConsole(TEST_URI);

  // Retrieve the logged message.
  const message = await waitFor(() =>
    findConsoleAPIMessage(hud, "Test message")
  );

  // Wait until the SVGAnimatedString is expanded.
  await waitFor(() => message.querySelectorAll(".arrow").length > 1);

  const arrow = message.querySelectorAll(".arrow")[1];
  ok(arrow, "longString expand arrow is shown");

  info("wait for long string expansion");
  const onLongStringFullTextDisplayed = waitFor(() =>
    findConsoleAPIMessage(hud, LONGSTRING)
  );
  arrow.click();
  await onLongStringFullTextDisplayed;

  ok(true, "The full text of the longString is displayed");

  info("wait for long string collapse");
  const onLongStringCollapsed = waitFor(
    () => !findConsoleAPIMessage(hud, LONGSTRING)
  );
  arrow.click();
  await onLongStringCollapsed;

  ok(true, "The longString can be collapsed");
});