| 12
 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
 
 | <!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<meta name="author" title="Takayoshi Kochi" href="mailto:kochi@chromium.org">
<meta name="assert" title="host-including inclusive ancestor should be checked for template content">
<link rel="help" href="https://dom.spec.whatwg.org/#concept-tree-host-including-inclusive-ancestor">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="parent">
  <template id="tmpl"><span>Happy Templating!</span></template>
</div>
</body>
<script>
test(() => {
  var parent = document.getElementById('parent');
  var tmpl = document.getElementById('tmpl');
  assert_equals(tmpl.innerHTML, '<span>Happy Templating!</span>');
  var span = tmpl.content.querySelector('span');
  // Hierarchy checks at various combinations.
  assert_throws('HierarchyRequestError', () => {
    tmpl.content.appendChild(parent);
  }, 'Template content should throw if any of ancestor is being appended.');
  assert_throws('HierarchyRequestError', () => {
    tmpl.content.appendChild(tmpl);
  }, 'Template content should throw if its host is being appended.');
  assert_throws('HierarchyRequestError', () => {
    span.appendChild(parent);
  }, 'Template content child should throw if any of ancestor is being appended.');
  assert_throws('HierarchyRequestError', () => {
    span.appendChild(tmpl);
  }, 'Template content child should throw template\'s host is being appended.');
}, "Template content should throw when its ancestor is being appended.");
test(() => {
  var parent = document.getElementById('parent');
  var tmpl = document.getElementById('tmpl');
  assert_equals(tmpl.innerHTML, '<span>Happy Templating!</span>');
  var span = tmpl.content.querySelector('span');
  var tmpl_doc = tmpl.content.ownerDocument;
  assert_equals(tmpl.ownerDocument, document);
  assert_not_equals(tmpl_doc, document);
  var new_doc = document.implementation.createHTMLDocument();
  assert_not_equals(new_doc, document);
  assert_not_equals(new_doc, tmpl_doc);
  // Try moving tmpl.content to new_doc and check the results.
  var new_node = new_doc.adoptNode(tmpl.content);
  assert_equals(new_node.ownerDocument, new_doc);
  assert_equals(tmpl.ownerDocument, document);
  assert_equals(tmpl.content.ownerDocument, new_doc);
  assert_not_equals(tmpl.content.ownerDocument, tmpl_doc);
  assert_not_equals(tmpl.content.ownerDocument, document);
  // Hierarchy checks at various combinations.
  assert_throws('HierarchyRequestError', () => {
    tmpl.content.appendChild(parent);
  }, 'Template content should throw if any of ancestor is being appended.');
  assert_throws('HierarchyRequestError', () => {
    tmpl.content.appendChild(tmpl);
  }, 'Template content should throw if its host is being appended.');
  assert_throws('HierarchyRequestError', () => {
    span.appendChild(parent);
  }, 'Template content child should throw if any of ancestor is being appended.');
  assert_throws('HierarchyRequestError', () => {
    span.appendChild(tmpl);
  }, 'Template content child should throw template\'s host is being appended.');
  // Sanity check: template.content before and after move.
  var tmpl_content_reference = tmpl.content;
  assert_equals(tmpl.content.firstChild, span,
                '<span> should be kept until it is removed, even after ' +
                'adopted to another document.');
  new_doc.body.appendChild(new_node);
  assert_equals(tmpl.content.firstChild, null,
                '<span> should be removed from template content.');
  assert_equals(tmpl_content_reference, tmpl.content,
                'template.content should be identical before and after ' +
                'moving its children.');
}, 'Template content should throw exception when its ancestor in ' +
   'a different document but connected via host is being append.');
</script>
</html>
 |