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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
<!DOCTYPE html>
<html>
<head>
<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
<link rel="help" href="https://github.com/whatwg/html/issues/10854">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="host">
<template shadowrootmode="open" shadowrootclonable="true" shadowrootcustomelementregistry>
<a-b>
<template shadowrootmode="open" shadowrootclonable="true" shadowrootcustomelementregistry>
<c-d/><c-d>
</template>
</a-b>
<ef></ef>
</template>
</div>
<div id="host-with-registry">
<template shadowrootmode="open" shadowrootclonable="true">
<a-b></a-b>
<ef></ef>
</template>
</div>
<script>
test(() => {
const document = new Document();
assert_throws_dom("NotSupportedError", () => window.customElements.initialize(document));
}, 'initialize throws when the registry scoped is false and the root is the document.');
test(() => {
const document = new Document();
const registry = new CustomElementRegistry;
registry.initialize(document);
assert_throws_dom("NotSupportedError", () => window.customElements.initialize(document));
}, 'initialize throws when the registry scoped is false and the root document already has another registry');
test(() => {
assert_equals(typeof(window.customElements.initialize), 'function');
assert_equals(typeof((new CustomElementRegistry).initialize), 'function');
}, 'initialize is a function on both global and scoped CustomElementRegistry');
test(() => {
const clone = host.cloneNode(true);
const shadowRoot = clone.shadowRoot;
assert_equals(shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, null);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, null);
window.customElements.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, window.customElements);
}, 'initialize sets element.customElementRegistry to the global registry');
test(() => {
const clone = host.cloneNode(true);
const shadowRoot = clone.shadowRoot;
assert_equals(shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, null);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, null);
window.customElements.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('a-b').shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').shadowRoot.querySelector('c-d').customElementRegistry, null);
}, 'initialize does not set the registry of nested shadow tree to the global registry');
test(() => {
const clone = host.cloneNode(true);
const shadowRoot = clone.shadowRoot;
assert_equals(shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, null);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, null);
const registry = new CustomElementRegistry;
registry.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, registry);
}, 'initialize sets element.customElementRegistry to a scoped registry');
test(() => {
const clone = host.cloneNode(true);
const shadowRoot = clone.shadowRoot;
assert_equals(shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, null);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, null);
const registry = new CustomElementRegistry;
registry.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, registry);
window.customElements.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, registry);
}, 'initialize does not set descendants whose customElementRegistry already uses a different registry');
test(() => {
const clone = host.cloneNode(true);
const shadowRoot = clone.shadowRoot;
assert_equals(shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, null);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, null);
const registry = new CustomElementRegistry;
registry.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('a-b').shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').shadowRoot.querySelector('c-d').customElementRegistry, null);
}, 'initialize does not set the registry of nested shadow tree to a scoped registry');
test(() => {
const clone = host.cloneNode(true);
const shadowRoot = clone.shadowRoot;
assert_equals(shadowRoot.customElementRegistry, null);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, null);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, null);
const registry = new CustomElementRegistry;
registry.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, registry);
document.body.appendChild(clone);
assert_equals(shadowRoot.customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, registry);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, registry);
}, 'initialize sets element.customElementRegistry permantently');
test(() => {
const clone = document.getElementById('host-with-registry').cloneNode(true);
const shadowRoot = clone.shadowRoot;
assert_equals(shadowRoot.customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, window.customElements);
const registry = new CustomElementRegistry;
registry.initialize(shadowRoot);
assert_equals(shadowRoot.customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('a-b').customElementRegistry, window.customElements);
assert_equals(shadowRoot.querySelector('ef').customElementRegistry, window.customElements);
}, 'initialize is no-op on a subtree with a non-null registry');
test(() => {
const doc = new Document();
assert_equals(doc.customElementRegistry, null);
const registry = new CustomElementRegistry();
registry.initialize(doc);
assert_equals(doc.customElementRegistry, registry);
}, 'initialize works on Document');
test(() => {
const doc = new Document();
const df = doc.createDocumentFragment();
const dummy = doc.createElement("dummy");
df.append(dummy);
assert_equals(dummy.customElementRegistry, null);
assert_equals(df.customElementRegistry, undefined);
const registry = new CustomElementRegistry();
registry.initialize(df);
assert_equals(dummy.customElementRegistry, registry);
assert_equals(df.customElementRegistry, undefined);
}, 'initialize works on DocumentFragment');
test(() => {
const shadowRoot = document.getElementById('host').cloneNode(true).shadowRoot;
const ab = shadowRoot.querySelector('a-b');
const ef = shadowRoot.querySelector('ef');
const registry = new CustomElementRegistry();
ab.innerHTML = '<dummy></dummy><div></div>';
registry.initialize(ab);
assert_equals(ab.customElementRegistry, registry);
assert_equals(ab.firstElementChild.customElementRegistry, registry);
assert_equals(ab.lastElementChild.customElementRegistry, registry);
ef.innerHTML = '<dummy></dummy><div></div>';
registry.initialize(ef);
assert_equals(ef.customElementRegistry, registry);
assert_equals(ef.firstElementChild.customElementRegistry, registry);
assert_equals(ef.lastElementChild.customElementRegistry, registry);
registry.initialize(shadowRoot);
assert_equals(ab.customElementRegistry, registry);
assert_equals(ab.firstElementChild.customElementRegistry, registry);
assert_equals(ab.lastElementChild.customElementRegistry, registry);
assert_equals(ef.customElementRegistry, registry);
assert_equals(ef.firstElementChild.customElementRegistry, registry);
assert_equals(ef.lastElementChild.customElementRegistry, registry);
}, 'initialize sets registry on shadow root descendants with no registry');
</script>
</body>
</html>
|