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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>Shadow Host Style Sharing Tests</title>
<link rel="help" href="https://drafts.csswg.org/css-scoping/#host-selector">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="container"></div>
<script>
const container = document.getElementById('container');
function cleanup() {
container.innerHTML = '';
}
// Test 1: Different :host rules in different stylesheets
test(() => {
cleanup();
const redSheet = new CSSStyleSheet();
redSheet.replaceSync(':host { color: rgb(255, 0, 0); }');
const blueSheet = new CSSStyleSheet();
blueSheet.replaceSync(':host { color: rgb(0, 0, 255); }');
let useRed = true;
class DynamicHost extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.innerHTML = '<div>content</div>';
shadow.adoptedStyleSheets = [useRed ? redSheet : blueSheet];
}
}
customElements.define('dynamic-host-1', DynamicHost);
const parent = document.createElement('div');
// Create siblings: first 10 with red sheet
useRed = true;
const redHosts = [];
for (let i = 0; i < 10; i++) {
const host = document.createElement('dynamic-host-1');
redHosts.push(host);
parent.appendChild(host);
}
// Then 1 with blue sheet as a sibling
useRed = false;
const blueHost = document.createElement('dynamic-host-1');
parent.appendChild(blueHost);
// Add to document and force style computation
container.appendChild(parent);
container.offsetHeight;
assert_equals(getComputedStyle(blueHost).color, 'rgb(0, 0, 255)', 'Must be blue, not red');
for (const host of redHosts) {
assert_equals(getComputedStyle(host).color, 'rgb(255, 0, 0)', 'Must be red');
}
}, 'Different CascadeData must block sharing despite being same element type');
// Test 2: Same :host rules, different inherited styles
test(() => {
cleanup();
const sharedSheet = new CSSStyleSheet();
sharedSheet.replaceSync(':host { font-size: 20px; }');
class SharedHost extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.adoptedStyleSheets = [sharedSheet];
shadow.innerHTML = '<span>content</span>';
}
}
customElements.define('shared-host-2', SharedHost);
const parent1 = document.createElement('div');
parent1.style.color = 'rgb(255, 0, 0)';
const host1 = document.createElement('shared-host-2');
parent1.appendChild(host1);
container.appendChild(parent1);
const parent2 = document.createElement('div');
parent2.style.color = 'rgb(0, 255, 0)';
const host2 = document.createElement('shared-host-2');
parent2.appendChild(host2);
container.appendChild(parent2);
assert_equals(getComputedStyle(host1).color, 'rgb(255, 0, 0)');
assert_equals(getComputedStyle(host2).color, 'rgb(0, 255, 0)');
}, 'Same :host rules but different inherited styles');
// Test 3: :host with class selector
test(() => {
cleanup();
const classSheet = new CSSStyleSheet();
classSheet.replaceSync(`
:host(.active) { background-color: rgb(255, 0, 0); }
:host(.inactive) { background-color: rgb(0, 0, 255); }
`);
class ClassHost extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.adoptedStyleSheets = [classSheet];
shadow.innerHTML = '<span>content</span>';
}
}
customElements.define('class-host-3', ClassHost);
const active = document.createElement('class-host-3');
active.className = 'active';
const inactive = document.createElement('class-host-3');
inactive.className = 'inactive';
container.appendChild(active);
container.appendChild(inactive);
assert_equals(getComputedStyle(active).backgroundColor, 'rgb(255, 0, 0)');
assert_equals(getComputedStyle(inactive).backgroundColor, 'rgb(0, 0, 255)');
}, ':host with class selector should not share across different classes');
// Test 4: :host with attribute selector
test(() => {
cleanup();
const attrSheet = new CSSStyleSheet();
attrSheet.replaceSync(`
:host([data-theme="dark"]) { color: rgb(0, 0, 0); }
:host([data-theme="light"]) { color: rgb(255, 255, 255); }
`);
class AttrHost extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.adoptedStyleSheets = [attrSheet];
shadow.innerHTML = '<span>content</span>';
}
}
customElements.define('attr-host-4', AttrHost);
const dark = document.createElement('attr-host-4');
dark.setAttribute('data-theme', 'dark');
const light = document.createElement('attr-host-4');
light.setAttribute('data-theme', 'light');
container.appendChild(dark);
container.appendChild(light);
assert_equals(getComputedStyle(dark).color, 'rgb(0, 0, 0)');
assert_equals(getComputedStyle(light).color, 'rgb(255, 255, 255)');
}, ':host with attribute selector should not share across different attributes');
// Test 5: Same stylesheet, different inline styles
test(() => {
cleanup();
const sharedSheet = new CSSStyleSheet();
sharedSheet.replaceSync(':host { display: block; }');
class InlineHost extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.adoptedStyleSheets = [sharedSheet];
shadow.innerHTML = '<span>content</span>';
}
}
customElements.define('inline-host-5', InlineHost);
const host1 = document.createElement('inline-host-5');
host1.style.color = 'rgb(255, 0, 0)';
const host2 = document.createElement('inline-host-5');
host2.style.color = 'rgb(0, 255, 0)';
container.appendChild(host1);
container.appendChild(host2);
assert_equals(getComputedStyle(host1).color, 'rgb(255, 0, 0)');
assert_equals(getComputedStyle(host2).color, 'rgb(0, 255, 0)');
}, 'Same CascadeData but different inline styles should not share');
// Test 6: Same :host rules but different shadow stylesheets
test(() => {
cleanup();
const sheetA = new CSSStyleSheet();
sheetA.replaceSync(':host { color: rgb(255, 0, 0); }');
const sheetB = new CSSStyleSheet();
sheetB.replaceSync(':host { color: rgb(255, 0, 0); } span { font-weight: bold; }');
let whichSheet = 'a';
class SubtleHost extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.adoptedStyleSheets = [whichSheet === 'a' ? sheetA : sheetB];
shadow.innerHTML = '<span>content</span>';
}
}
customElements.define('subtle-host-6', SubtleHost);
whichSheet = 'a';
const hostA = document.createElement('subtle-host-6');
whichSheet = 'b';
const hostB = document.createElement('subtle-host-6');
container.appendChild(hostA);
container.appendChild(hostB);
assert_equals(getComputedStyle(hostA).color, 'rgb(255, 0, 0)');
assert_equals(getComputedStyle(hostB).color, 'rgb(255, 0, 0)');
}, 'Same :host rules but different CascadeData should prevent sharing');
</script>
|