summaryrefslogtreecommitdiffstats
path: root/dom/xslt/tests/mochitest/test_bug319374.html
blob: 92d48e037a7aa0d48c6cc7a72875cbf639788b75 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=319374
-->
<head>
  <title>Test for Bug 319374</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=319374">Mozilla Bug 319374</a>
<p id="display"></p>
<div id="content"><custom-el></custom-el><custom-el></custom-el><custom-el></custom-el></div>
<pre id="test">
<script class="testbody" type="text/javascript">

customElements.define("custom-el", class extends HTMLElement {
  constructor() {
    super();
    this.attachShadow({ mode: "open" });
    this.shadowRoot.innerHTML =
      `<span attr="attribute"><span></span></span><span> anon text </span><br>`;
  }
});

  function testChangesInShadowDOM() {
    // Test 1: Make sure that modifying anonymous content doesn't
    //         cause non-anonymous XPath result to throw exceptions..
    var counter = 0;
    var error = null;
    try {
      var xp = new XPathEvaluator();
      var result = xp.evaluate("*",
                               document.getElementById('content'),
                               null,
                               XPathResult.UNORDERED_NODE_ITERATOR_TYPE,
                               null);
      var res = null;
      while (res = result.iterateNext()) {
        ++counter;
        let anon = res.shadowRoot.childNodes;
        anon[0].firstChild.remove(); // Removing a child node
        anon[0].removeAttribute("attr1"); // Removing an attribute
        anon[1].firstChild.data = "anon text changed" // Modifying text data
      }
    } catch (e) {
      error = e;
    }
    ok(!error, error);
    ok(counter == 3, "XPathEvaluator should have found 3 elements.")

    // Test 2: If the context node is in anonymous content, changing some
    //         other anonymous tree shouldn't cause XPath result to throw.
    let shadowAttr1 = document.getElementById("content").firstChild.
      shadowRoot.firstChild.getAttributeNode("attr");
    let shadowAttr2 = document.getElementById("content").lastChild.
      shadowRoot.firstChild.getAttributeNode("attr");
    var resultAttr = null;
    try {
      var xp2 = xp.evaluate(".",
                            shadowAttr1,
                            null,
                            XPathResult.UNORDERED_NODE_ITERATOR_TYPE,
                            null);
      // Attribute changing in a different anonymous tree.
      shadowAttr2.value = "foo";
      resultAttr = xp2.iterateNext();
      is(resultAttr, shadowAttr1, "XPathEvaluator returned wrong attribute!");
    } catch (e) {
      ok(false, e);
    }

    // Test 3: If the anonymous tree in which context node is in is modified,
    //         XPath result should throw when iterateNext() is called.
    resultAttr = null;
    try {
      var xp3 = xp.evaluate(".",
                            shadowAttr1,
                            null,
                            XPathResult.UNORDERED_NODE_ITERATOR_TYPE,
                            null);
      // Attribute changing in the same anonymous tree.
      shadowAttr1.ownerElement.setAttribute("foo", "bar");
      resultAttr = xp3.iterateNext();
      ok(resultAttr == shadowAttr1,
         "XPathEvaluator should have thrown an exception!")
    } catch (e) {
      ok(true, e);
    }

    SimpleTest.finish();
  }

  SimpleTest.waitForExplicitFinish();
  addLoadEvent(testChangesInShadowDOM);
</script>
</pre>
</body>
</html>