Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/scripting-1/the-template-element/template-element/template-content-hierarcy.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta name="author" title="Takayoshi Kochi" href="mailto:kochi@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<div id="parent">
<template id="tmpl"><span>Happy Templating!</span></template>
</div>
<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_dom('HierarchyRequestError', () => {
tmpl.content.appendChild(parent);
}, 'Template content should throw if any of ancestor is being appended.');
assert_throws_dom('HierarchyRequestError', () => {
tmpl.content.appendChild(tmpl);
}, 'Template content should throw if its host is being appended.');
assert_throws_dom('HierarchyRequestError', () => {
span.appendChild(parent);
}, 'Template content child should throw if any of ancestor is being appended.');
assert_throws_dom('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.
const tmplContentAdoptResult = new_doc.adoptNode(tmpl.content);
assert_equals(tmpl.content, tmplContentAdoptResult);
assert_equals(tmpl.ownerDocument, document);
assert_equals(tmpl.content.ownerDocument, new_doc);
// Hierarchy checks at various combinations.
assert_throws_dom('HierarchyRequestError', () => {
tmpl.content.appendChild(parent);
}, 'Template content should throw if any of ancestor is being appended.');
assert_throws_dom('HierarchyRequestError', () => {
tmpl.content.appendChild(tmpl);
}, 'Template content should throw if its host is being appended.');
assert_throws_dom('HierarchyRequestError', () => {
span.appendChild(parent);
}, 'Template content child should throw if any of ancestor is being appended.');
assert_throws_dom('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(tmpl.content);
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.');
test(() => {
const outer = document.createElement('template');
const inner = document.createElement('template');
const div = document.createElement('div');
const span = document.createElement('span');
outer.content.appendChild(inner);
inner.content.appendChild(div);
div.appendChild(span);
// outer is a host-including inclusive ancestor of everything in inner's
// contents, reached through two template content boundaries.
assert_throws_dom('HierarchyRequestError', () => {
inner.content.appendChild(outer);
}, 'Template content should throw if a template two boundaries up is being appended.');
assert_throws_dom('HierarchyRequestError', () => {
span.appendChild(outer);
}, 'Template content descendant should throw if a template two boundaries up is being appended.');
assert_throws_dom('HierarchyRequestError', () => {
span.appendChild(inner);
}, 'Template content descendant should throw if its own host is being appended.');
// A node that is not an ancestor is still accepted.
inner.content.appendChild(document.createElement('p'));
assert_equals(inner.content.lastChild.localName, 'p');
}, 'Template content should throw when an ancestor across two template ' +
'boundaries is being appended.');
</script>