summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_reload_shadow_dom.js
blob: 1bcdeb9ff6859787a8c96b3fbfec1e61a66b210f (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
55
56
57
58
59
60
61
/* 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";

// Check that the markup view selection is preserved even if the selection is in shadow-dom.

const HTML = `
    <html>
      <head>
        <meta charset="utf8">
        <title>Test</title>
      </head>
      <body>
        <h1>Shadow DOM test</h1>
        <test-component>
          <div slot="slot1" id="el1">content</div>
        </test-component>
        <script>
          'use strict';

          customElements.define('test-component', class extends HTMLElement {
            constructor() {
              super();
              const shadowRoot = this.attachShadow({mode: 'open'});
              shadowRoot.innerHTML = '<slot class="slot-class" name="slot1"></slot>';
            }
          });
        </script>
      </body>
    </html>
`;

const TEST_URI = "data:text/html;charset=utf-8," + encodeURI(HTML);

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

  info("Select node in shadow DOM");
  const nodeFront = await getNodeFrontInShadowDom(
    "slot",
    "test-component",
    inspector
  );
  await selectNode(nodeFront, inspector);

  info("Reloading page.");
  await navigateTo(TEST_URI);

  const reloadedNodeFront = await getNodeFrontInShadowDom(
    "slot",
    "test-component",
    inspector
  );

  is(
    inspector.selection.nodeFront,
    reloadedNodeFront,
    "<slot> is selected after reload."
  );
});