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
|
<!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(() => {
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);
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');
</script>
</body>
</html>
|