summaryrefslogtreecommitdiffstats
path: root/toolkit/components/translations/tests/browser/translations-tester-shadow-dom-es.html
blob: ed4b1ceec2f7f2e5353051d9fa37df1b52b7d4bf (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
<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="utf-8" />
  <title>Translations Test</title>
  <style>
    div {
      margin: 10px auto;
      width: 300px
    }
    p {
      margin: 47px 0;
      font-size: 21px;
      line-height: 2;
    }
  </style>
</head>
<body>
  <h1>Esto se contenta en Luz DOM</h1>
  <div id="host"></div>
  <div><div><div id="host2"></div></div></div>
  <script>
    const host = document.getElementById("host");
    const root = host.attachShadow({mode: "open"});
    root.innerHTML = "<p>Esto se contento en Shadow DOM</p><div id='innerHost'></div>";

    // Nested shadow tree
    const innerHost = root.querySelector("div");
    const innerRoot = innerHost.attachShadow({mode: "open"});
    innerRoot.innerHTML = "<p>Esto se contenta en raíz interior </p>";

    // Host within an empty textContent element
    const host2 = document.getElementById("host2");
    const root2 = host2.attachShadow({mode: "open"});
    root2.innerHTML = "<p>Esto se contento en Shadow DOM 2</p>";
  </script>
</body>
</html>