invalid htmlFor
HTML
<fancy-checkbox id="fancy"></fancy-checkbox>
<label for="fancy-invalid">fancy checkbox with invalid id</label>
<script>
console.log(`${document.querySelector('label').htmlFor}`); // logs 'fancy-invalid'
</script>
<fancy-checkbox id="fancy"></fancy-checkbox>
<label for="fancy-invalid">fancy checkbox with invalid id</label>
<script>
console.log(`${document.querySelector('label').htmlFor}`); // logs 'fancy-invalid'
</script>