option-rm-label.html (720B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>OPTION's label attribute in SELECT -- Removing the label</title> 4 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2"> 5 <link rel="match" href="option-label-ref.html"> 6 <meta name="assert" content="An option element is expected to be rendered by displaying the element's label."> 7 8 <select> 9 <option label="Bad Label Text">Label Text</option> 10 </select> 11 <br/> 12 <select size="4"> 13 <option label="Bad Label Text">Label Text</option> 14 </select> 15 <script> 16 let options = document.querySelectorAll("option"); 17 options[0].getBoundingClientRect(); // force layout. 18 for (let option of options) { 19 option.removeAttribute("label"); 20 } 21 </script>