summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/browser_markup_toggle_closing_tag_line.js
blob: 914b4b6b5ed060ac66ccb3b3dedfc2544bbcf8f9 (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
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that a closing tag line is displayed when expanding an element container.
// Also check that no closing tag line is displayed for readonly containers (document,
// roots...).

const TEST_URL = `data:text/html;charset=utf8,
<div class="outer-div"><span>test</span></div>
<iframe src="data:text/html;charset=utf8,<div>test</div>"></iframe>`;

add_task(async function () {
  const { inspector } = await openInspectorForURL(TEST_URL);

  info("Getting the container for .outer-div parent element");
  let container = await getContainerForSelector(".outer-div", inspector);
  await toggleContainerByClick(inspector, container);

  let closeTagLine = container.closeTagLine;
  ok(
    closeTagLine && closeTagLine.textContent.includes("div"),
    "DIV has a close tag-line with the correct content"
  );

  info("Expand the iframe element");
  container = await getContainerForSelector("iframe", inspector);
  await toggleContainerByClick(inspector, container);
  ok(container.expanded, "iframe is expanded");
  closeTagLine = container.closeTagLine;
  ok(
    closeTagLine && closeTagLine.textContent.includes("iframe"),
    "IFRAME has a close tag-line with the correct content"
  );

  info("Retrieve the nodefront for the #document root inside the iframe");
  const iframe = await getNodeFront("iframe", inspector);
  const { nodes } = await inspector.walker.children(iframe);
  const documentFront = nodes[0];
  ok(
    documentFront.displayName === "#document",
    "First child of IFRAME is #document"
  );

  info("Expand the iframe's #document node element");
  container = getContainerForNodeFront(documentFront, inspector);
  await toggleContainerByClick(inspector, container);
  ok(container.expanded, "#document is expanded");
  ok(
    !container.closeTagLine,
    "readonly (#document) node has no close tag-line"
  );
});