1 <html> 2 <head> 3 </head> 4 <body> 5 <p>Do the following, the test passes if the select keeps the selected value after step 4, fails if the value reverted.</p> 6 <ul> 7 <li>1. Click the select to open the popup list.</li> 8 <li>2. Use keyboard to select a value by pressing the first letter of the value.</li> 9 <li>3. Click the select again to close the popup list, it should stay at the value from step 2.</li> 10 <li>4. Click anywhere else on the page to move the focus out of the select.</li> 11 </ul> 12 13 <select> 14 <option>0</option> 15 <option>1</option> 16 <option>2</option> 17 <option>3</option> 18 </select> 19 </body> 20 </html> 21