<p>
Only the second search field should have a cancel button (×).
</p>
<input type="search">
<input type="search" value="this one">
<script>
document.querySelectorAll('input')[1].focus();
</script>
<p>
Only the second search field should have a cancel button (×).
</p>
<input type="search">
<input type="search" value="this one">
<script>
document.querySelectorAll('input')[1].focus();
</script>