summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/domparsing/insert_adjacent_html.js
blob: 2980037433d02f8a53b0b83ffdbe94f778adb03c (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
function testThrowingNoParent(element, desc) {
  test(function() {
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("afterend", "") }
    );
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("beforebegin", "") }
    );
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("afterend", "foo") }
    );
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("beforebegin", "foo") }
    );
  }, "When the parent node is " + desc + ", insertAdjacentHTML should throw for beforebegin and afterend (text)");
  test(function() {
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("afterend", "<!-- fail -->") }
    );
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("beforebegin", "<!-- fail -->") }
    );
  }, "When the parent node is " + desc + ", insertAdjacentHTML should throw for beforebegin and afterend (comments)");
  test(function() {
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("afterend", "<div></div>") }
    );
    assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR",
      function() { element.insertAdjacentHTML("beforebegin", "<div></div>") }
    );
  }, "When the parent node is " + desc + ", insertAdjacentHTML should throw for beforebegin and afterend (elements)");
}