Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-shadow-parts/part-nested-pseudo.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>::part() doesn't incorrectly match pseudo-elements of the part</title>
<link rel="match" href="part-nested-pseudo-ref.html">
<style>
#host::part(input) {
border: 1px solid green;
}
</style>
<div id="host"></div>
<script>
document.getElementById("host").attachShadow({ mode: "open" }).innerHTML = `
<input type=file part=input>
<input type=text part=input placeholder=Foobar>
`;
</script>