Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <title>Test for HTMLSelectElement.remove() on an Options object</title> | |
| 3 | |
| 4 <style type="text/css"> | |
| 5 select { | |
| 6 min-width: 100px; | |
|
tkent
2016/09/29 01:14:44
Please indent the content of a ruleset.
| |
| 7 } | |
| 8 </style> | |
| 9 | |
| 10 <select> | |
| 11 <option selected>hello</option> | |
| 12 </select> | |
| 13 | |
| 14 <a herf="#">Remove option</a> | |
|
tkent
2016/09/29 01:14:44
Please remove it.
| |
| 15 | |
| 16 <script> | |
| 17 window.addEventListener('load', function() { | |
| 18 document.querySelector('option').remove(); | |
|
tkent
2016/09/29 01:14:44
Please indent the content of a function.
| |
| 19 }); | |
| 20 </script> | |
| OLD | NEW |