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
|
<!DOCTYPE html>
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
<link rel="help" href="drafts.csswg.org/css-cascade-6/#scoped-styles">
<link rel="help" href="https://drafts.csswg.org/css-shadow-parts/#part">
<link rel="match" href="scope-part-ref.html">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1908279">
<meta name="assert" content="Implicit @scope rule lets ::part selector to match inside the shadow tree">
<template id="custom-element">
<style>
:host {
display: block;
}
div {
padding: 5px;
}
</style>
<slot></slot>
<div part="a"></div>
<div part="b"></div>
</template>
<template id="custom-element-wrapper">
<style>
:host {
display: block;
}
div {
padding: 5px;
}
</style>
<custom-element exportparts="a"></custom-element>
</template>
<custom-element>
<style>
@scope {
:scope {
background: red;
}
}
</style>
</custom-element>
<custom-element>
<style>
@scope {
:scope::part(a), :scope::part(b) {
background: blue;
}
}
</style>
</custom-element>
<custom-element>
<style>
@scope {
:scope::part(a), :scope::part(b) {
background: red;
}
}
</style>
<custom-element>
<style>
@scope {
:scope::part(a), :scope::part(b) {
background: blue;
}
}
</style>
</custom-element>
</custom-element>
<custom-element-wrapper>
<style slot="s">
@scope {
:scope::part(a) {
background: blue;
}
:scope::part(b) {
background: red;
}
}
</style>
</custom-element-wrapper>
<div>
<template shadowrootmode=open>
<!-- Inside a shadow root -->
<custom-element-wrapper>
<style slot="a">
@scope {
:scope::part(a) {
background: blue;
}
}
</style>
</custom-element-wrapper>
</template>
</div>
<div>
<template shadowrootmode=open>
<!-- Shadow root & host at the same time -->
<div style="padding: 5px;">
<template shadowrootmode=open>
<div></div>
</template>
<style>
@scope {
:scope {
background: red;
}
}
</style>
</div>
</template>
</div>
<script>
customElements.define(
"custom-element",
class extends HTMLElement {
constructor() {
super();
let template = document.getElementById("custom-element");
let templateContent = template.content;
const shadowRoot = this.attachShadow({ mode: "open" });
shadowRoot.appendChild(templateContent.cloneNode(true));
}
},
);
customElements.define(
"custom-element-wrapper",
class extends HTMLElement {
constructor() {
super();
let template = document.getElementById("custom-element-wrapper");
let templateContent = template.content;
const shadowRoot = this.attachShadow({ mode: "open" });
shadowRoot.appendChild(templateContent.cloneNode(true));
}
},
);
</script>
|