Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>